Home | History | Annotate | Download | only in intl

Lines Matching defs: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;
651 newp = (struct known_translation_t *)
654 if (newp != NULL)
656 newp->domainname =
657 mempcpy (newp->msgid, msgid1, msgid_len);
658 memcpy (newp->domainname, domainname, domainname_len + 1);
659 newp->category = category;
660 newp->counter = _nl_msg_cat_cntr;
661 newp->domain = domain;
662 newp->translation = retval;
663 newp->translation_length = retlen;
667 tsearch (newp, &root, transcmp);
669 || __builtin_expect (*foundp != newp, 0))
671 free (newp);