Lines Matching refs:nodep
285 copystrings (struct Strent *nodep, char **freep, size_t *offsetp) in copystrings() argument
289 if (nodep->left != NULL) in copystrings()
290 copystrings (nodep->left, freep, offsetp); in copystrings()
293 nodep->offset = *offsetp; in copystrings()
294 *freep = (char *) mempcpy (*freep, nodep->string, nodep->len); in copystrings()
295 *offsetp += nodep->len; in copystrings()
297 for (subs = nodep->next; subs != NULL; subs = subs->next) in copystrings()
299 assert (subs->len < nodep->len); in copystrings()
300 subs->offset = nodep->offset + nodep->len - subs->len; in copystrings()
303 if (nodep->right != NULL) in copystrings()
304 copystrings (nodep->right, freep, offsetp); in copystrings()