Lines Matching refs:nodep
299 copystrings (struct Ebl_WStrent *nodep, wchar_t **freep, size_t *offsetp) in copystrings() argument
303 if (nodep->left != NULL) in copystrings()
304 copystrings (nodep->left, freep, offsetp); in copystrings()
307 nodep->offset = *offsetp; in copystrings()
308 *freep = wmempcpy (*freep, nodep->string, nodep->len); in copystrings()
309 *offsetp += nodep->len * sizeof (wchar_t); in copystrings()
311 for (subs = nodep->next; subs != NULL; subs = subs->next) in copystrings()
313 assert (subs->len < nodep->len); in copystrings()
314 subs->offset = nodep->offset + nodep->len - subs->len; in copystrings()
318 if (nodep->right != NULL) in copystrings()
319 copystrings (nodep->right, freep, offsetp); in copystrings()