Lines Matching refs:newp
339 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
342 if (newp != NULL) { \
343 newp->address = (addr); \
344 newp->next = (list); \
345 (list) = newp; \
649 struct known_translation_t *newp; in DCIGETTEXT() local
651 newp = (struct known_translation_t *) in DCIGETTEXT()
654 if (newp != NULL) in DCIGETTEXT()
656 newp->domainname = in DCIGETTEXT()
657 mempcpy (newp->msgid, msgid1, msgid_len); in DCIGETTEXT()
658 memcpy (newp->domainname, domainname, domainname_len + 1); in DCIGETTEXT()
659 newp->category = category; in DCIGETTEXT()
660 newp->counter = _nl_msg_cat_cntr; in DCIGETTEXT()
661 newp->domain = domain; in DCIGETTEXT()
662 newp->translation = retval; in DCIGETTEXT()
663 newp->translation_length = retlen; in DCIGETTEXT()
667 tsearch (newp, &root, transcmp); in DCIGETTEXT()
669 || __builtin_expect (*foundp != newp, 0)) in DCIGETTEXT()
671 free (newp); in DCIGETTEXT()