HomeSort by: relevance | last modified time | path
    Searched refs:ctf_list_t (Results 1 - 20 of 20) sorted by relevancy

  /src/external/cddl/osnet/dist/common/ctf/
ctf_util.c 36 * 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 *q = lp->l_next; /* q = head list element *
    [all...]
ctf_impl.h 121 } ctf_list_t; typedef in typeref:struct:ctf_list
132 ctf_list_t cd_list; /* linked list pointers */
139 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* declaration node stacks */
151 ctf_list_t dmd_list; /* list forward/back pointers */
159 ctf_list_t dtd_list; /* list forward/back pointers */
166 ctf_list_t dtu_members; /* struct, union, or enum */
221 ctf_list_t ctf_dtdefs; /* list of dynamic type definitions */
325 #define ctf_list_prev(elem) ((void *)(((ctf_list_t *)(elem))->l_prev))
326 #define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next))
328 extern void ctf_list_append(ctf_list_t *, void *)
    [all...]
ctf_create.c 559 memset(&fp->ctf_dtdefs, 0, sizeof (ctf_list_t));
  /src/external/gpl3/binutils/dist/libctf/
ctf-util.c 25 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 *q = lp->l_next; /* q = head list element. *
    [all...]
ctf-impl.h 151 } ctf_list_t; typedef in typeref:struct:ctf_list
164 ctf_list_t cd_list; /* Linked list pointers. */
172 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* Declaration node stacks. */
183 ctf_list_t dtd_list; /* List forward/back pointers. */
192 ctf_list_t dvd_list; /* List forward/back pointers. */
200 ctf_list_t cew_list; /* List forward/back pointers. */
219 ctf_list_t csa_refs; /* This string's refs. */
220 ctf_list_t csa_movable_refs; /* This string's movable refs. */
231 ctf_list_t caf_list; /* List forward/back pointers. */
239 ctf_list_t caf_list; /* List forward/back pointers. *
    [all...]
ctf-subr.c 234 static ctf_list_t open_errors;
313 ctf_list_t *errlist;
ctf-dump.c 29 ctf_list_t cdi_list;
41 ctf_list_t cds_items;
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-util.c 25 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 *q = lp->l_next; /* q = head list element. *
    [all...]
ctf-impl.h 151 } ctf_list_t; typedef in typeref:struct:ctf_list
164 ctf_list_t cd_list; /* Linked list pointers. */
172 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* Declaration node stacks. */
183 ctf_list_t dtd_list; /* List forward/back pointers. */
192 ctf_list_t dvd_list; /* List forward/back pointers. */
200 ctf_list_t cew_list; /* List forward/back pointers. */
219 ctf_list_t csa_refs; /* This string's refs. */
220 ctf_list_t csa_movable_refs; /* This string's movable refs. */
231 ctf_list_t caf_list; /* List forward/back pointers. */
239 ctf_list_t caf_list; /* List forward/back pointers. *
    [all...]
ctf-subr.c 234 static ctf_list_t open_errors;
313 ctf_list_t *errlist;
ctf-dump.c 29 ctf_list_t cdi_list;
41 ctf_list_t cds_items;
  /src/external/gpl3/gdb/dist/libctf/
ctf-util.c 25 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 *q = lp->l_next; /* q = head list element. *
    [all...]
ctf-impl.h 147 } ctf_list_t; typedef in typeref:struct:ctf_list
160 ctf_list_t cd_list; /* Linked list pointers. */
168 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* Declaration node stacks. */
179 ctf_list_t dtd_list; /* List forward/back pointers. */
188 ctf_list_t dvd_list; /* List forward/back pointers. */
196 ctf_list_t cew_list; /* List forward/back pointers. */
215 ctf_list_t csa_refs; /* This string's refs. */
216 ctf_list_t csa_movable_refs; /* This string's movable refs. */
227 ctf_list_t caf_list; /* List forward/back pointers. */
235 ctf_list_t caf_list; /* List forward/back pointers. *
    [all...]
ctf-subr.c 234 static ctf_list_t open_errors;
313 ctf_list_t *errlist;
ctf-dump.c 29 ctf_list_t cdi_list;
41 ctf_list_t cds_items;
  /src/external/gpl3/gdb.old/dist/libctf/
ctf-util.c 25 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 *q = lp->l_next; /* q = head list element. *
    [all...]
ctf-impl.h 147 } ctf_list_t; typedef in typeref:struct:ctf_list
160 ctf_list_t cd_list; /* Linked list pointers. */
168 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* Declaration node stacks. */
179 ctf_list_t dtd_list; /* List forward/back pointers. */
188 ctf_list_t dvd_list; /* List forward/back pointers. */
196 ctf_list_t cew_list; /* List forward/back pointers. */
216 ctf_list_t csa_refs; /* This string's refs. */
227 ctf_list_t caf_list; /* List forward/back pointers. */
235 ctf_list_t caf_list; /* List forward/back pointers. */
244 ctf_list_t cid_list; /* List forward/back pointers. *
    [all...]
ctf-subr.c 197 static ctf_list_t open_errors;
276 ctf_list_t *errlist;
ctf-dump.c 29 ctf_list_t cdi_list;
41 ctf_list_t cds_items;
  /src/external/cddl/osnet/dev/fbt/
fbt.c 778 } 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 *q = new; /* q = new list element *
    [all...]

Completed in 251 milliseconds