Lines Matching refs:nodep
292 copystrings (struct Ebl_Strent *nodep, char **freep, size_t *offsetp) in copystrings() argument
294 if (nodep->left != NULL) in copystrings()
295 copystrings (nodep->left, freep, offsetp); in copystrings()
298 nodep->offset = *offsetp; in copystrings()
299 *freep = (char *) mempcpy (*freep, nodep->string, nodep->len); in copystrings()
300 *offsetp += nodep->len; in copystrings()
302 for (struct Ebl_Strent *subs = nodep->next; subs != NULL; subs = subs->next) in copystrings()
304 assert (subs->len < nodep->len); in copystrings()
305 subs->offset = nodep->offset + nodep->len - subs->len; in copystrings()
309 if (nodep->right != NULL) in copystrings()
310 copystrings (nodep->right, freep, offsetp); in copystrings()