Lines Matching refs:newp

946   struct charseq *newp;  in charmap_new_char()  local
952 newp = (struct charseq *) obstack_alloc (ob, sizeof (*newp) + nbytes); in charmap_new_char()
953 newp->nbytes = nbytes; in charmap_new_char()
954 memcpy (newp->bytes, bytes, nbytes); in charmap_new_char()
955 newp->name = from; in charmap_new_char()
957 newp->ucs4 = UNINITIALIZED_CHAR_VALUE; in charmap_new_char()
974 newp->ucs4 = strtoul (from + 1, &endp, 16); in charmap_new_char()
976 || (newp->ucs4 == ~((uint32_t) 0) && errno == ERANGE) in charmap_new_char()
977 || newp->ucs4 >= 0x80000000) in charmap_new_char()
980 newp->ucs4 = UNINITIALIZED_CHAR_VALUE; in charmap_new_char()
983 insert_entry (ht, from, len1, newp); in charmap_new_char()
984 insert_entry (bt, newp->bytes, nbytes, newp); in charmap_new_char()
1046 newp = (struct charseq *) obstack_alloc (ob, sizeof (*newp) + nbytes); in charmap_new_char()
1047 newp->nbytes = nbytes; in charmap_new_char()
1048 memcpy (newp->bytes, bytes, nbytes); in charmap_new_char()
1049 newp->name = name_end; in charmap_new_char()
1051 newp->ucs4 = UNINITIALIZED_CHAR_VALUE; in charmap_new_char()
1069 newp->ucs4 = strtoul (name_end + 1, &endp, 16); in charmap_new_char()
1071 || (newp->ucs4 == ~((uint32_t) 0) && errno == ERANGE) in charmap_new_char()
1072 || newp->ucs4 >= 0x80000000) in charmap_new_char()
1075 newp->ucs4 = UNINITIALIZED_CHAR_VALUE; in charmap_new_char()
1078 insert_entry (ht, name_end, len1, newp); in charmap_new_char()
1079 insert_entry (bt, newp->bytes, nbytes, newp); in charmap_new_char()