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; \
653 struct known_translation_t *newp;
655 newp = (struct known_translation_t *)
658 if (newp != NULL)
660 newp->domainname =
661 mempcpy (newp->msgid, msgid1, msgid_len);
662 memcpy (newp->domainname, domainname, domainname_len + 1);
663 newp->category = category;
664 newp->counter = _nl_msg_cat_cntr;
665 newp->domain = domain;
666 newp->translation = retval;
667 newp->translation_length = retlen;
671 tsearch (newp, &root, transcmp);
673 || __builtin_expect (*foundp != newp, 0))
675 free (newp);