Home | History | Annotate | Download | only in intl

Lines Matching defs:newp

338     struct block_list *newp = (struct block_list *) malloc (sizeof (*newp));  \
341 if (newp != NULL) { \
342 newp->address = (addr); \
343 newp->next = (list); \
344 (list) = newp; \
648 struct known_translation_t *newp;
650 newp = (struct known_translation_t *)
653 if (newp != NULL)
655 newp->domainname =
656 mempcpy (newp->msgid, msgid1, msgid_len);
657 memcpy (newp->domainname, domainname, domainname_len + 1);
658 newp->category = category;
659 newp->counter = _nl_msg_cat_cntr;
660 newp->domain = domain;
661 newp->translation = retval;
662 newp->translation_length = retlen;
666 tsearch (newp, &root, transcmp);
668 || __builtin_expect (*foundp != newp, 0))
670 free (newp);