Lines Matching refs:nodep
305 copystrings (struct Ebl_GStrent *nodep, char **freep, size_t *offsetp) in copystrings() argument
309 if (nodep->left != NULL) in copystrings()
310 copystrings (nodep->left, freep, offsetp); in copystrings()
313 nodep->offset = *offsetp; in copystrings()
314 *freep = (char *) mempcpy (*freep, nodep->string, nodep->len * nodep->width); in copystrings()
315 *offsetp += nodep->len * nodep->width; in copystrings()
317 for (subs = nodep->next; subs != NULL; subs = subs->next) in copystrings()
319 assert (subs->len < nodep->len); in copystrings()
320 subs->offset = nodep->offset + (nodep->len - subs->len) * nodep->width; in copystrings()
324 if (nodep->right != NULL) in copystrings()
325 copystrings (nodep->right, freep, offsetp); in copystrings()