HomeSort by relevance Sort by last modified time
    Searched refs:a_type (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/jemalloc_new/include/jemalloc/internal/
ph.h 19 #define phn(a_type) \
21 a_type *phn_prev; \
22 a_type *phn_next; \
23 a_type *phn_lchild; \
27 #define ph(a_type) \
29 a_type *ph_root; \
33 #define phn_lchild_get(a_type, a_field, a_phn) \
35 #define phn_lchild_set(a_type, a_field, a_phn, a_lchild) do { \
39 #define phn_next_get(a_type, a_field, a_phn) \
41 #define phn_prev_set(a_type, a_field, a_phn, a_prev) do {
    [all...]
rb.h 31 #define rb_node(a_type) \
33 a_type *rbn_left; \
34 a_type *rbn_right_red; \
37 #define rb_node(a_type) \
39 a_type *rbn_left; \
40 a_type *rbn_right; \
46 #define rb_tree(a_type) \
48 a_type *rbt_root; \
52 #define rbtn_left_get(a_type, a_field, a_node) \
54 #define rbtn_left_set(a_type, a_field, a_node, a_left) do {
    [all...]
ql.h 7 #define ql_head(a_type) \
9 a_type *qlh_first; \
14 #define ql_elm(a_type) qr(a_type)
72 #define ql_head_remove(a_head, a_type, a_field) do { \
73 a_type *t = ql_first(a_head); \
77 #define ql_tail_remove(a_head, a_type, a_field) do { \
78 a_type *t = ql_last(a_head, a_field); \
qr.h 5 #define qr(a_type) \
7 a_type *qre_next; \
8 a_type *qre_prev; \
35 #define qr_meld(a_qr_a, a_qr_b, a_type, a_field) do { \
36 a_type *t; \
48 #define qr_split(a_qr_a, a_qr_b, a_type, a_field) \
49 qr_meld((a_qr_a), (a_qr_b), a_type, a_field)
  /external/jemalloc/include/jemalloc/internal/
rb.h 27 #define rb_node(a_type) \
29 a_type *rbn_left; \
30 a_type *rbn_right_red; \
33 #define rb_node(a_type) \
35 a_type *rbn_left; \
36 a_type *rbn_right; \
42 #define rb_tree(a_type) \
44 a_type *rbt_root; \
48 #define rbtn_left_get(a_type, a_field, a_node) \
50 #define rbtn_left_set(a_type, a_field, a_node, a_left) do {
    [all...]
ph.h 19 #define phn(a_type) \
21 a_type *phn_prev; \
22 a_type *phn_next; \
23 a_type *phn_lchild; \
27 #define ph(a_type) \
29 a_type *ph_root; \
33 #define phn_lchild_get(a_type, a_field, a_phn) \
35 #define phn_lchild_set(a_type, a_field, a_phn, a_lchild) do { \
39 #define phn_next_get(a_type, a_field, a_phn) \
41 #define phn_prev_set(a_type, a_field, a_phn, a_prev) do {
    [all...]
ql.h 2 #define ql_head(a_type) \
4 a_type *qlh_first; \
9 #define ql_elm(a_type) qr(a_type)
67 #define ql_head_remove(a_head, a_type, a_field) do { \
68 a_type *t = ql_first(a_head); \
72 #define ql_tail_remove(a_head, a_type, a_field) do { \
73 a_type *t = ql_last(a_head, a_field); \
tsd.h 54 * Note that all of the functions deal in terms of (a_type *) rather than
55 * (a_type) so that it is possible to support non-pointer types (unlike
56 * pthreads TSD). example_tsd_cleanup() is passed an (a_type *) pointer that is
58 * function argument to (a_type *), then dereference the resulting pointer to
80 #define malloc_tsd_types(a_name, a_type)
82 #define malloc_tsd_types(a_name, a_type)
84 #define malloc_tsd_types(a_name, a_type) \
87 a_type val; \
90 #define malloc_tsd_types(a_name, a_type) \
93 a_type val;
    [all...]
  /external/elfutils/backends/
alpha_auxv.c 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format)
39 if (a_type != AT_HWCAP)
arm_auxv.c 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format)
39 if (a_type != AT_HWCAP)
i386_auxv.c 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format)
39 if (a_type != AT_HWCAP)
ppc_auxv.c 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format)
39 if (a_type != AT_HWCAP)
sparc_auxv.c 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format)
39 if (a_type != AT_HWCAP)
  /external/elfutils/libebl/
eblauxvinfo.c 88 ebl_auxv_info (Ebl *ebl, GElf_Xword a_type, const char **name,
91 int result = ebl->auxv_info (a_type, name, format);
92 if (result == 0 && a_type < nauxv_types && auxv_types[a_type].name != NULL)
95 *name = auxv_types[a_type].name;
96 *format = auxv_types[a_type].format;
  /bionic/libc/bionic/
getauxval.cpp 41 for (ElfW(auxv_t)* v = __libc_shared_globals()->auxv; v->a_type != AT_NULL; ++v) {
42 if (v->a_type == type) {
  /external/python/cpython2/Modules/
cgen.py 197 for a_type, a_mode, a_factor, a_sub in database:
207 a_type, a_mode, a_factor, a_sub)
230 a_type, a_mode, a_factor, a_sub = database[i]
231 print '\t' + a_type,
248 a_type, a_mode, a_factor, a_sub = database[i]
263 a_type, a_mode, a_factor, a_sub = database[i]
273 a_type, a_mode, a_factor, a_sub = database[i]
274 if a_type[:9] == 'unsigned ':
275 xtype = a_type[9:]
277 xtype = a_type
    [all...]
  /bionic/libc/private/
KernelArgumentBlock.h 52 for (ElfW(auxv_t)* v = auxv; v->a_type != AT_NULL; ++v) {
53 if (v->a_type == type) {
  /bionic/linker/
linker_wrapper.cpp 69 for (ElfW(auxv_t)* v = args.auxv; v->a_type != AT_NULL; ++v) {
70 if (v->a_type == AT_BASE) {
74 if (v->a_type == AT_ENTRY) {
  /external/elfutils/libelf/
gelf_update_auxv.c 71 if (unlikely (src->a_type > 0xffffffffll)
87 auxv->a_type = src->a_type;
gelf_getauxv.c 81 dst->a_type = src->a_type;
  /external/google-breakpad/src/common/android/include/
elf.h 79 uint32_t a_type; member in struct:__anon22570
86 uint64_t a_type; member in struct:__anon22572
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest-test-part.h 60 TestPartResult(Type a_type,
64 : type_(a_type),
  /external/googletest/googletest/include/gtest/
gtest-test-part.h 63 TestPartResult(Type a_type, const char* a_file_name, int a_line_number,
65 : type_(a_type),
  /external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/
gtest-test-part.h 60 TestPartResult(Type a_type,
64 : type_(a_type),
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest-test-part.h 62 TestPartResult(Type a_type,
66 : type_(a_type),

Completed in 338 milliseconds

1 2 3