Home
last modified time | relevance | path

Searched refs:nodep (Results 1 – 11 of 11) sorted by relevance

/glibc-2.36/iconv/
Dstrtab.c285 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()
[all …]
Dgconv_dl.c152 do_release_shlib (const void *nodep, VISIT value, void *closure) in do_release_shlib() argument
155 struct __gconv_loaded_object *obj = *(struct __gconv_loaded_object **) nodep; in do_release_shlib()
190 do_release_all (void *nodep) in do_release_all() argument
192 struct __gconv_loaded_object *obj = (struct __gconv_loaded_object *) nodep; in do_release_all()
213 do_print (const void *nodep, VISIT value, int level) in do_print() argument
215 struct __gconv_loaded_object *obj = *(struct __gconv_loaded_object **) nodep; in do_print()
Diconv_prog.c631 insert_print_list (const void *nodep, VISIT value, int level) in insert_print_list() argument
635 const struct gconv_alias *s = *(const struct gconv_alias **) nodep; in insert_print_list()
641 do_print_human (const void *nodep, VISIT value, int level) in do_print_human() argument
645 const char *s = *(const char **) nodep; in do_print_human()
683 do_print (const void *nodep, VISIT value, int level) in do_print() argument
687 const char *s = *(const char **) nodep; in do_print()
Diconvconfig.c480 append_alias (const void *nodep, VISIT value, int level) in append_alias() argument
493 alias_list[nalias_list++] = *(struct alias **) nodep; in append_alias()
688 append_module (const void *nodep, VISIT value, int level) in append_module() argument
695 mo = *(struct module **) nodep; in append_module()
977 static void name_insert (const void *nodep, VISIT value, int level) in name_insert() argument
986 name = *(struct name **) nodep; in name_insert()
/glibc-2.36/manual/examples/
Dtwalk.c27 twalk_with_twalk_r_action (const void *nodep, VISIT which, void *closure0) in twalk_with_twalk_r_action() argument
34 closure->action (nodep, which, closure->depth); in twalk_with_twalk_r_action()
37 closure->action (nodep, which, closure->depth); in twalk_with_twalk_r_action()
42 closure->action (nodep, which, closure->depth - 1); in twalk_with_twalk_r_action()
46 closure->action (nodep, which, closure->depth); in twalk_with_twalk_r_action()
/glibc-2.36/misc/
Dtst-tsearch.c127 twalk_with_twalk_r_action (const void *nodep, VISIT which, void *closure0) in twalk_with_twalk_r_action() argument
134 closure->action (nodep, which, closure->depth); in twalk_with_twalk_r_action()
137 closure->action (nodep, which, closure->depth); in twalk_with_twalk_r_action()
142 closure->action (nodep, which, closure->depth - 1); in twalk_with_twalk_r_action()
146 closure->action (nodep, which, closure->depth); in twalk_with_twalk_r_action()
161 walk_action (const void *nodep, const VISIT which, const int depth) in walk_action() argument
163 int key = **(int **) nodep; in walk_action()
166 (struct walk_trace_element) { nodep, which, depth }); in walk_action()
/glibc-2.36/sysdeps/pthread/
Dsem_routines.c156 struct inuse_sem *nodep = *(struct inuse_sem **) inodep; in walker() local
158 if (nodep->sem == closure->the_sem) in walker()
159 closure->rec = nodep; in walker()
/glibc-2.36/nss/
Dmakedb.c577 copy_valstr (const void *nodep, const VISIT which, const int depth) in copy_valstr() argument
582 const struct valstrentry *p = *(const struct valstrentry **) nodep; in copy_valstr()
626 void add_key(const void *nodep, VISIT which, void *arg) in add_key() argument
632 const struct dbentry *dbe = *(const struct dbentry **) nodep; in add_key()
/glibc-2.36/locale/programs/
Dlocale.c303 print_names (const void *nodep, VISIT value, int level) in print_names() argument
306 puts (*(char **) nodep); in print_names()
/glibc-2.36/manual/
Dsearch.texi575 void __action_fn_t (const void *nodep, VISIT value, int level);
578 The @var{nodep} is the data value of the current node (once given as the
/glibc-2.36/ChangeLog.old/
DChangeLog.129728 * iconv/gconv_dl.c (do_release_shlib): Remove const from nodep.