Home
last modified time | relevance | path

Searched refs:ctf_list_next (Results 1 – 7 of 7) sorted by relevance

/dflybsd-src/contrib/binutils-2.34/libctf/
H A Dctf-types.c94 for (dmd = ctf_list_next (&dtd->dtd_u.dtu_members); in ctf_member_iter()
95 dmd != NULL; dmd = ctf_list_next (dmd)) in ctf_member_iter()
146 for (dmd = ctf_list_next (&dtd->dtd_u.dtu_members); in ctf_enum_iter()
147 dmd != NULL; dmd = ctf_list_next (dmd)) in ctf_enum_iter()
221 for (dvd = ctf_list_next (&fp->ctf_dvdefs); dvd != NULL; in ctf_variable_iter()
222 dvd = ctf_list_next (dvd)) in ctf_variable_iter()
361 for (cdp = ctf_list_next (&cd.cd_nodes[prec]); in ctf_type_aname()
362 cdp != NULL; cdp = ctf_list_next (cdp)) in ctf_type_aname()
605 for (dmd = ctf_list_next (&dtd->dtd_u.dtu_members); in ctf_type_align()
606 dmd != NULL; dmd = ctf_list_next (dmd)) in ctf_type_align()
[all …]
H A Dctf-create.c155 ctf_dmdef_t *dmd = ctf_list_next (&dtd->dtd_u.dtu_members); in ctf_copy_smembers()
158 for (; dmd != NULL; dmd = ctf_list_next (dmd)) in ctf_copy_smembers()
180 ctf_dmdef_t *dmd = ctf_list_next (&dtd->dtd_u.dtu_members); in ctf_copy_lmembers()
183 for (; dmd != NULL; dmd = ctf_list_next (dmd)) in ctf_copy_lmembers()
206 ctf_dmdef_t *dmd = ctf_list_next (&dtd->dtd_u.dtu_members); in ctf_copy_emembers()
209 for (; dmd != NULL; dmd = ctf_list_next (dmd)) in ctf_copy_emembers()
298 for (type_size = 0, dtd = ctf_list_next (&fp->ctf_dtdefs); in ctf_serialize()
299 dtd != NULL; dtd = ctf_list_next (dtd)) in ctf_serialize()
340 for (nvars = 0, dvd = ctf_list_next (&fp->ctf_dvdefs); in ctf_serialize()
341 dvd != NULL; dvd = ctf_list_next (dvd), nvars++); in ctf_serialize()
[all …]
H A Dctf-string.c81 for (ref = ctf_list_next (&atom->csa_refs); ref != NULL; ref = next) in ctf_str_purge_atom_refs()
83 next = ctf_list_next (ref); in ctf_str_purge_atom_refs()
276 for (aref = ctf_list_next (&atom->csa_refs); aref != NULL; aref = anext) in ctf_str_remove_ref()
278 anext = ctf_list_next (aref); in ctf_str_remove_ref()
329 for (ref = ctf_list_next (&refs->csa_refs); ref != NULL; in ctf_str_update_refs()
330 ref = ctf_list_next (ref)) in ctf_str_update_refs()
H A Dctf-decl.c65 for (cdp = ctf_list_next (&cd->cd_nodes[i]); cdp != NULL; cdp = ndp) in ctf_decl_fini()
67 ndp = ctf_list_next (cdp); in ctf_decl_fini()
145 if (ctf_list_next (&cd->cd_nodes[prec]) == NULL) in ctf_decl_push()
H A Dctf-dump.c73 for (cdi = ctf_list_next (&state->cds_items); cdi != NULL; in ctf_dump_free()
77 next_cdi = ctf_list_next (cdi); in ctf_dump_free()
733 state->cds_current = ctf_list_next (&state->cds_items); in ctf_dump()
735 state->cds_current = ctf_list_next (state->cds_current); in ctf_dump()
H A Dctf-open.c1632 for (dtd = ctf_list_next (&fp->ctf_dtdefs); dtd != NULL; dtd = ntd) in ctf_file_close()
1634 ntd = ctf_list_next (dtd); in ctf_file_close()
1653 for (dvd = ctf_list_next (&fp->ctf_dvdefs); dvd != NULL; dvd = nvd) in ctf_file_close()
1655 nvd = ctf_list_next (dvd); in ctf_file_close()
H A Dctf-impl.h395 #define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next)) macro