HomeSort by: relevance | last modified time | path
    Searched refs:a_type (Results 1 - 25 of 114) sorted by relevancy

1 2 3 4 5

  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
rb.h 40 #define rb_node(a_type) \
42 a_type *rbn_left; \
43 a_type *rbn_right_red; \
46 #define rb_node(a_type) \
48 a_type *rbn_left; \
49 a_type *rbn_right; \
55 #define rb_tree(a_type) \
57 a_type *rbt_root; \
61 #define rbtn_left_get(a_type, a_field, a_node) \
63 #define rbtn_left_set(a_type, a_field, a_node, a_left) do {
    [all...]
mpsc_queue.h 28 #define mpsc_queue(a_type) \
33 #define mpsc_queue_proto(a_attr, a_prefix, a_queue_type, a_type, \
43 a_prefix##push(a_queue_type *queue, a_type *node); \
52 #define mpsc_queue_gen(a_attr, a_prefix, a_queue_type, a_type, \
64 a_type *first = ql_first(src); \
65 a_type *last = ql_last(src, a_link); \
83 a_prefix##push(a_queue_type *queue, a_type *node) { \
92 a_type *tail = atomic_load_p(&queue->tail, ATOMIC_RELAXED); \
126 a_type *next = tail->a_link.qre_prev; \
ql.h 26 * for a_type arguments.
30 #define ql_head(a_type) \
32 a_type *qlh_first; \
39 #define ql_elm(a_type) qr(a_type)
139 #define ql_head_remove(a_head, a_type, a_field) do { \
140 a_type *t = ql_first(a_head); \
145 #define ql_tail_remove(a_head, a_type, a_field) do { \
146 a_type *t = ql_last(a_head, a_field); \
168 * a_type *t = ql_first(a_head)
    [all...]
qr.h 20 #define qr(a_type) \
22 a_type *qre_next; \
23 a_type *qre_prev; \
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
rb.h 40 #define rb_node(a_type) \
42 a_type *rbn_left; \
43 a_type *rbn_right_red; \
46 #define rb_node(a_type) \
48 a_type *rbn_left; \
49 a_type *rbn_right; \
55 #define rb_tree(a_type) \
57 a_type *rbt_root; \
61 #define rbtn_left_get(a_type, a_field, a_node) \
63 #define rbtn_left_set(a_type, a_field, a_node, a_left) do {
    [all...]
ql.h 26 * for a_type arguments.
30 #define ql_head(a_type) \
32 a_type *qlh_first; \
39 #define ql_elm(a_type) qr(a_type)
139 #define ql_head_remove(a_head, a_type, a_field) do { \
140 a_type *t = ql_first(a_head); \
145 #define ql_tail_remove(a_head, a_type, a_field) do { \
146 a_type *t = ql_last(a_head, a_field); \
168 * a_type *t = ql_first(a_head)
    [all...]
qr.h 20 #define qr(a_type) \
22 a_type *qre_next; \
23 a_type *qre_prev; \
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
rb.h 44 #define rb_node(a_type) \
46 a_type *rbn_left; \
47 a_type *rbn_right_red; \
50 #define rb_node(a_type) \
52 a_type *rbn_left; \
53 a_type *rbn_right; \
59 #define rb_tree(a_type) \
61 a_type *rbt_root; \
65 #define rbtn_left_get(a_type, a_field, a_node) \
67 #define rbtn_left_set(a_type, a_field, a_node, a_left) do {
    [all...]
mpsc_queue.h 30 #define mpsc_queue(a_type) \
35 #define mpsc_queue_proto(a_attr, a_prefix, a_queue_type, a_type, \
45 a_prefix##push(a_queue_type *queue, a_type *node); \
54 #define mpsc_queue_gen(a_attr, a_prefix, a_queue_type, a_type, \
66 a_type *first = ql_first(src); \
67 a_type *last = ql_last(src, a_link); \
85 a_prefix##push(a_queue_type *queue, a_type *node) { \
94 a_type *tail = atomic_load_p(&queue->tail, ATOMIC_RELAXED); \
128 a_type *next = tail->a_link.qre_prev; \
ql.h 27 * for a_type arguments.
31 #define ql_head(a_type) \
33 a_type *qlh_first; \
41 #define ql_elm(a_type) qr(a_type)
147 #define ql_head_remove(a_head, a_type, a_field) \
149 a_type *t = ql_first(a_head); \
154 #define ql_tail_remove(a_head, a_type, a_field) \
156 a_type *t = ql_last(a_head, a_field); \
179 * a_type *t = ql_first(a_head)
    [all...]
ph.h 501 #define ph_structs(a_prefix, a_type, a_max_queue_size) \
519 #define ph_proto(a_attr, a_prefix, a_type) \
523 a_attr a_type *a_prefix##_first(a_prefix##_t *ph); \
524 a_attr a_type *a_prefix##_any(a_prefix##_t *ph); \
525 a_attr void a_prefix##_insert(a_prefix##_t *ph, a_type *phn); \
526 a_attr a_type *a_prefix##_remove_first(a_prefix##_t *ph); \
527 a_attr void a_prefix##_remove(a_prefix##_t *ph, a_type *phn); \
528 a_attr a_type *a_prefix##_remove_any(a_prefix##_t *ph); \
532 a_attr a_type *a_prefix##_enumerate_next( \
536 #define ph_gen(a_attr, a_prefix, a_type, a_field, a_cmp)
    [all...]
qr.h 20 #define qr(a_type) \
22 a_type *qre_next; \
23 a_type *qre_prev; \
  /src/external/bsd/jemalloc/include/jemalloc/internal/
rb.h 44 #define rb_node(a_type) \
46 a_type *rbn_left; \
47 a_type *rbn_right_red; \
50 #define rb_node(a_type) \
52 a_type *rbn_left; \
53 a_type *rbn_right; \
59 #define rb_tree(a_type) \
61 a_type *rbt_root; \
65 #define rbtn_left_get(a_type, a_field, a_node) \
67 #define rbtn_left_set(a_type, a_field, a_node, a_left) do {
    [all...]
mpsc_queue.h 30 #define mpsc_queue(a_type) \
35 #define mpsc_queue_proto(a_attr, a_prefix, a_queue_type, a_type, \
45 a_prefix##push(a_queue_type *queue, a_type *node); \
54 #define mpsc_queue_gen(a_attr, a_prefix, a_queue_type, a_type, \
66 a_type *first = ql_first(src); \
67 a_type *last = ql_last(src, a_link); \
85 a_prefix##push(a_queue_type *queue, a_type *node) { \
94 a_type *tail = atomic_load_p(&queue->tail, ATOMIC_RELAXED); \
128 a_type *next = tail->a_link.qre_prev; \
ql.h 27 * for a_type arguments.
31 #define ql_head(a_type) \
33 a_type *qlh_first; \
41 #define ql_elm(a_type) qr(a_type)
147 #define ql_head_remove(a_head, a_type, a_field) \
149 a_type *t = ql_first(a_head); \
154 #define ql_tail_remove(a_head, a_type, a_field) \
156 a_type *t = ql_last(a_head, a_field); \
179 * a_type *t = ql_first(a_head)
    [all...]
ph.h 501 #define ph_structs(a_prefix, a_type, a_max_queue_size) \
519 #define ph_proto(a_attr, a_prefix, a_type) \
523 a_attr a_type *a_prefix##_first(a_prefix##_t *ph); \
524 a_attr a_type *a_prefix##_any(a_prefix##_t *ph); \
525 a_attr void a_prefix##_insert(a_prefix##_t *ph, a_type *phn); \
526 a_attr a_type *a_prefix##_remove_first(a_prefix##_t *ph); \
527 a_attr void a_prefix##_remove(a_prefix##_t *ph, a_type *phn); \
528 a_attr a_type *a_prefix##_remove_any(a_prefix##_t *ph); \
532 a_attr a_type *a_prefix##_enumerate_next( \
536 #define ph_gen(a_attr, a_prefix, a_type, a_field, a_cmp)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
ppc-dfp.c 35 for (i = 0; auxv[i].a_type != AT_NULL; i++)
36 if (auxv[i].a_type == AT_HWCAP) {
ppc64-isa207-atomic-inst.c 33 for (i = 0; auxv[i].a_type != AT_NULL; i++)
34 if (auxv[i].a_type == AT_HWCAP2) {
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
ppc-dfp.c 35 for (i = 0; auxv[i].a_type != AT_NULL; i++)
36 if (auxv[i].a_type == AT_HWCAP) {
ppc64-isa207-atomic-inst.c 33 for (i = 0; auxv[i].a_type != AT_NULL; i++)
34 if (auxv[i].a_type == AT_HWCAP2) {
  /src/sys/compat/linux/arch/powerpc/
linux_exec_powerpc.c 112 a->a_type = LINUX_AT_EGID;
116 a->a_type = LINUX_AT_GID;
120 a->a_type = LINUX_AT_EUID;
124 a->a_type = LINUX_AT_UID;
129 a->a_type = AT_ENTRY;
133 a->a_type = AT_FLAGS;
137 a->a_type = AT_BASE;
141 a->a_type = AT_PHNUM;
145 a->a_type = AT_PHENT;
149 a->a_type = AT_PHDR
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_getauxval.h 48 static inline decltype(AuxInfo::a_v) getauxval(decltype(AuxInfo::a_type) type) {
50 aux->a_type != AT_NULL; ++aux) {
51 if (type == aux->a_type)
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_getauxval.h 48 static inline decltype(AuxInfo::a_v) getauxval(decltype(AuxInfo::a_type) type) {
50 aux->a_type != AT_NULL; ++aux) {
51 if (type == aux->a_type)
  /src/sys/compat/linux32/common/
linux32_exec_elf32.c 134 a->a_type = AT_PAGESZ;
140 a->a_type = AT_PHDR;
144 a->a_type = AT_PHENT;
148 a->a_type = AT_PHNUM;
152 a->a_type = AT_BASE;
156 a->a_type = AT_FLAGS;
160 a->a_type = AT_ENTRY;
168 a->a_type = LINUX_AT_CLKTCK;
174 a->a_type = LINUX_AT_UID;
178 a->a_type = LINUX_AT_EUID
    [all...]
  /src/sys/compat/linux/arch/amd64/
linux_exec_machdep.c 178 esd.ai[i].a_type = LINUX_AT_HWCAP;
181 esd.ai[i].a_type = AT_PAGESZ;
184 esd.ai[i].a_type = LINUX_AT_CLKTCK;
187 esd.ai[i].a_type = AT_PHDR;
190 esd.ai[i].a_type = AT_PHENT;
193 esd.ai[i].a_type = AT_PHNUM;
196 esd.ai[i].a_type = AT_BASE;
199 esd.ai[i].a_type = AT_FLAGS;
202 esd.ai[i].a_type = AT_ENTRY;
205 esd.ai[i].a_type = LINUX_AT_EGID
    [all...]

Completed in 33 milliseconds

1 2 3 4 5