Searched refs:ctf_list_t (Results 1 - 24 of 24) sorted by relevance

/netbsd-current/external/cddl/osnet/dist/common/ctf/
H A Dctf_util.c36 * each list element contains an embedded ctf_list_t as the first member.
37 * An additional ctf_list_t is used to store the head (l_next) and tail
42 ctf_list_append(ctf_list_t *lp, void *new)
44 ctf_list_t *p = lp->l_prev; /* p = tail list element */
45 ctf_list_t *q = new; /* q = new list element */
58 * Prepend the specified existing element to the given ctf_list_t. The
59 * existing pointer should be pointing at a struct with embedded ctf_list_t.
62 ctf_list_prepend(ctf_list_t *lp, void *new)
64 ctf_list_t *p = new; /* p = new list element */
65 ctf_list_t *
[all...]
H A Dctf_impl.h110 } ctf_list_t; typedef in typeref:struct:ctf_list
121 ctf_list_t cd_list; /* linked list pointers */
128 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* declaration node stacks */
140 ctf_list_t dmd_list; /* list forward/back pointers */
148 ctf_list_t dtd_list; /* list forward/back pointers */
155 ctf_list_t dtu_members; /* struct, union, or enum */
209 ctf_list_t ctf_dtdefs; /* list of dynamic type definitions */
292 #define ctf_list_prev(elem) ((void *)(((ctf_list_t *)(elem))->l_prev))
293 #define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next))
295 extern void ctf_list_append(ctf_list_t *, voi
[all...]
H A Dctf_create.c454 bzero(&fp->ctf_dtdefs, sizeof (ctf_list_t));
/netbsd-current/external/gpl3/gdb.old/dist/libctf/
H A Dctf-util.c24 each list element contains an embedded ctf_list_t as the first member.
25 An additional ctf_list_t is used to store the head (l_next) and tail
30 ctf_list_append (ctf_list_t *lp, void *newp)
32 ctf_list_t *p = lp->l_prev; /* p = tail list element. */
33 ctf_list_t *q = newp; /* q = new list element. */
45 /* Prepend the specified existing element to the given ctf_list_t. The
46 existing pointer should be pointing at a struct with embedded ctf_list_t. */
49 ctf_list_prepend (ctf_list_t * lp, void *newp)
51 ctf_list_t *p = newp; /* p = new list element. */
52 ctf_list_t *
[all...]
H A Dctf-impl.h140 } ctf_list_t; typedef in typeref:struct:ctf_list
153 ctf_list_t cd_list; /* Linked list pointers. */
161 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* Declaration node stacks. */
172 ctf_list_t dmd_list; /* List forward/back pointers. */
181 ctf_list_t dtd_list; /* List forward/back pointers. */
186 ctf_list_t dtu_members; /* struct, union, or enum */
196 ctf_list_t dvd_list; /* List forward/back pointers. */
204 ctf_list_t cew_list; /* List forward/back pointers. */
221 ctf_list_t csa_refs; /* This string's refs. */
231 ctf_list_t caf_lis
[all...]
H A Dctf-subr.c197 static ctf_list_t open_errors;
274 ctf_list_t *errlist;
H A Dctf-dump.c29 ctf_list_t cdi_list;
41 ctf_list_t cds_items;
H A Dctf-create.c571 memset (&fp->ctf_dtdefs, 0, sizeof (ctf_list_t));
572 memset (&fp->ctf_errs_warnings, 0, sizeof (ctf_list_t));
586 memset (&fp->ctf_dvdefs, 0, sizeof (ctf_list_t));
/netbsd-current/external/gpl3/binutils/dist/libctf/
H A Dctf-util.c25 each list element contains an embedded ctf_list_t as the first member.
26 An additional ctf_list_t is used to store the head (l_next) and tail
31 ctf_list_append (ctf_list_t *lp, void *newp)
33 ctf_list_t *p = lp->l_prev; /* p = tail list element. */
34 ctf_list_t *q = newp; /* q = new list element. */
46 /* Prepend the specified existing element to the given ctf_list_t. The
47 existing pointer should be pointing at a struct with embedded ctf_list_t. */
50 ctf_list_prepend (ctf_list_t * lp, void *newp)
52 ctf_list_t *p = newp; /* p = new list element. */
53 ctf_list_t *
[all...]
H A Dctf-impl.h153 } ctf_list_t; typedef in typeref:struct:ctf_list
166 ctf_list_t cd_list; /* Linked list pointers. */
174 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* Declaration node stacks. */
185 ctf_list_t dtd_list; /* List forward/back pointers. */
194 ctf_list_t dvd_list; /* List forward/back pointers. */
202 ctf_list_t cew_list; /* List forward/back pointers. */
219 ctf_list_t csa_refs; /* This string's refs. */
229 ctf_list_t caf_list; /* List forward/back pointers. */
237 ctf_list_t cid_list; /* List forward/back pointers. */
423 ctf_list_t ctf_in_flight_dynsym
[all...]
H A Dctf-subr.c197 static ctf_list_t open_errors;
276 ctf_list_t *errlist;
H A Dctf-dump.c29 ctf_list_t cdi_list;
41 ctf_list_t cds_items;
H A Dctf-serialize.c1180 memset (&fp->ctf_dtdefs, 0, sizeof (ctf_list_t));
1181 memset (&fp->ctf_errs_warnings, 0, sizeof (ctf_list_t));
1204 memset (&fp->ctf_dvdefs, 0, sizeof (ctf_list_t));
/netbsd-current/external/gpl3/gdb/dist/libctf/
H A Dctf-util.c25 each list element contains an embedded ctf_list_t as the first member.
26 An additional ctf_list_t is used to store the head (l_next) and tail
31 ctf_list_append (ctf_list_t *lp, void *newp)
33 ctf_list_t *p = lp->l_prev; /* p = tail list element. */
34 ctf_list_t *q = newp; /* q = new list element. */
46 /* Prepend the specified existing element to the given ctf_list_t. The
47 existing pointer should be pointing at a struct with embedded ctf_list_t. */
50 ctf_list_prepend (ctf_list_t * lp, void *newp)
52 ctf_list_t *p = newp; /* p = new list element. */
53 ctf_list_t *
[all...]
H A Dctf-impl.h153 } ctf_list_t; typedef in typeref:struct:ctf_list
166 ctf_list_t cd_list; /* Linked list pointers. */
174 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* Declaration node stacks. */
185 ctf_list_t dtd_list; /* List forward/back pointers. */
194 ctf_list_t dvd_list; /* List forward/back pointers. */
202 ctf_list_t cew_list; /* List forward/back pointers. */
219 ctf_list_t csa_refs; /* This string's refs. */
229 ctf_list_t caf_list; /* List forward/back pointers. */
237 ctf_list_t cid_list; /* List forward/back pointers. */
423 ctf_list_t ctf_in_flight_dynsym
[all...]
H A Dctf-subr.c197 static ctf_list_t open_errors;
276 ctf_list_t *errlist;
H A Dctf-dump.c29 ctf_list_t cdi_list;
41 ctf_list_t cds_items;
H A Dctf-serialize.c1180 memset (&fp->ctf_dtdefs, 0, sizeof (ctf_list_t));
1181 memset (&fp->ctf_errs_warnings, 0, sizeof (ctf_list_t));
1204 memset (&fp->ctf_dvdefs, 0, sizeof (ctf_list_t));
/netbsd-current/external/gpl3/binutils.old/dist/libctf/
H A Dctf-util.c25 each list element contains an embedded ctf_list_t as the first member.
26 An additional ctf_list_t is used to store the head (l_next) and tail
31 ctf_list_append (ctf_list_t *lp, void *newp)
33 ctf_list_t *p = lp->l_prev; /* p = tail list element. */
34 ctf_list_t *q = newp; /* q = new list element. */
46 /* Prepend the specified existing element to the given ctf_list_t. The
47 existing pointer should be pointing at a struct with embedded ctf_list_t. */
50 ctf_list_prepend (ctf_list_t * lp, void *newp)
52 ctf_list_t *p = newp; /* p = new list element. */
53 ctf_list_t *
[all...]
H A Dctf-impl.h153 } ctf_list_t; typedef in typeref:struct:ctf_list
166 ctf_list_t cd_list; /* Linked list pointers. */
174 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* Declaration node stacks. */
185 ctf_list_t dtd_list; /* List forward/back pointers. */
194 ctf_list_t dvd_list; /* List forward/back pointers. */
202 ctf_list_t cew_list; /* List forward/back pointers. */
219 ctf_list_t csa_refs; /* This string's refs. */
229 ctf_list_t caf_list; /* List forward/back pointers. */
237 ctf_list_t cid_list; /* List forward/back pointers. */
423 ctf_list_t ctf_in_flight_dynsym
[all...]
H A Dctf-subr.c197 static ctf_list_t open_errors;
276 ctf_list_t *errlist;
H A Dctf-dump.c29 ctf_list_t cdi_list;
41 ctf_list_t cds_items;
H A Dctf-serialize.c1180 memset (&fp->ctf_dtdefs, 0, sizeof (ctf_list_t));
1181 memset (&fp->ctf_errs_warnings, 0, sizeof (ctf_list_t));
1204 memset (&fp->ctf_dvdefs, 0, sizeof (ctf_list_t));
/netbsd-current/external/cddl/osnet/dev/fbt/
H A Dfbt.c778 } ctf_list_t; typedef in typeref:struct:ctf_list
780 #define ctf_list_prev(elem) ((void *)(((ctf_list_t *)(elem))->l_prev))
781 #define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next))
792 ctf_list_t cd_list; /* linked list pointers */
799 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* declaration node stacks */
812 * each list element contains an embedded ctf_list_t as the first member.
813 * An additional ctf_list_t is used to store the head (l_next) and tail
818 ctf_list_append(ctf_list_t *lp, void *new)
820 ctf_list_t *p = lp->l_prev; /* p = tail list element */
821 ctf_list_t *
[all...]

Completed in 279 milliseconds