/external/chromium_org/third_party/jemalloc/chromium/ |
D | rb.h | 81 #define rb_node(a_type) \ argument 83 a_type *rbn_left; \ 84 a_type *rbn_right_red; \ 88 #define rb_tree(a_type) \ argument 90 a_type *rbt_root; \ 91 a_type rbt_nil; \ 95 #define rbp_left_get(a_type, a_field, a_node) \ argument 97 #define rbp_left_set(a_type, a_field, a_node, a_left) do { \ argument 102 #define rbp_right_get(a_type, a_field, a_node) \ argument 103 ((a_type *) (((intptr_t) (a_node)->a_field.rbn_right_red) \ [all …]
|
D | ql.h | 35 #define ql_head(a_type) \ argument 37 a_type *qlh_first; \ 42 #define ql_elm(a_type) qr(a_type) argument 100 #define ql_head_remove(a_head, a_type, a_field) do { \ argument 101 a_type *t = ql_first(a_head); \ 105 #define ql_tail_remove(a_head, a_type, a_field) do { \ argument 106 a_type *t = ql_last(a_head, a_field); \
|
D | qr.h | 33 #define qr(a_type) \ argument 35 a_type *qre_next; \ 36 a_type *qre_prev; \
|
/external/chromium_org/third_party/jemalloc/vendor/ |
D | rb.h | 81 #define rb_node(a_type) \ argument 83 a_type *rbn_left; \ 84 a_type *rbn_right_red; \ 88 #define rb_tree(a_type) \ argument 90 a_type *rbt_root; \ 91 a_type rbt_nil; \ 95 #define rbp_left_get(a_type, a_field, a_node) \ argument 97 #define rbp_left_set(a_type, a_field, a_node, a_left) do { \ argument 102 #define rbp_right_get(a_type, a_field, a_node) \ argument 103 ((a_type *) (((intptr_t) (a_node)->a_field.rbn_right_red) \ [all …]
|
D | ql.h | 35 #define ql_head(a_type) \ argument 37 a_type *qlh_first; \ 42 #define ql_elm(a_type) qr(a_type) argument 100 #define ql_head_remove(a_head, a_type, a_field) do { \ argument 101 a_type *t = ql_first(a_head); \ 105 #define ql_tail_remove(a_head, a_type, a_field) do { \ argument 106 a_type *t = ql_last(a_head, a_field); \
|
D | qr.h | 33 #define qr(a_type) \ argument 35 a_type *qre_next; \ 36 a_type *qre_prev; \
|
/external/elfutils/libebl/ |
D | eblauxvinfo.c | 107 ebl_auxv_info (ebl, a_type, name, format) in ebl_auxv_info() argument 109 GElf_Xword a_type; 113 int result = ebl->auxv_info (a_type, name, format); 114 if (result == 0 && a_type < nauxv_types && auxv_types[a_type].name != NULL) 117 *name = auxv_types[a_type].name; 118 *format = auxv_types[a_type].format;
|
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/ |
D | shim_entry.c | 22 for (Elf32_auxv_t *av = auxv; av->a_type != AT_NULL; ++av) { in _pnacl_wrapper_start() 23 if (av->a_type == AT_SYSINFO) { in _pnacl_wrapper_start() 38 entry->a_type = AT_SYSINFO; in _pnacl_wrapper_start()
|
/external/valgrind/main/coregrind/m_initimg/ |
D | initimg-linux.c | 353 Word a_type; member 453 for (cauxv = orig_auxv; cauxv->a_type != AT_NULL; cauxv++) { in setup_client_stack() 454 if (cauxv->a_type == AT_PLATFORM || in setup_client_stack() 455 cauxv->a_type == AT_BASE_PLATFORM) in setup_client_stack() 457 else if (cauxv->a_type == AT_RANDOM) in setup_client_stack() 459 else if (cauxv->a_type == AT_EXECFN && have_exename) in setup_client_stack() 621 auxv[0].a_type = AT_IGNOREPPC; in setup_client_stack() 623 auxv[1].a_type = AT_IGNOREPPC; in setup_client_stack() 628 for (; orig_auxv->a_type != AT_NULL; auxv++, orig_auxv++) { in setup_client_stack() 634 switch(auxv->a_type) { in setup_client_stack() [all …]
|
/external/elfutils/libelf/ |
D | gelf_update_auxv.c | 95 if (unlikely (src->a_type > 0xffffffffll) 111 auxv->a_type = src->a_type;
|
D | gelf_getauxv.c | 105 dst->a_type = src->a_type;
|
/external/elfutils/backends/ |
D | sparc_auxv.c | 34 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) in EBLHOOK() 36 if (a_type != AT_HWCAP) in EBLHOOK()
|
D | alpha_auxv.c | 34 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) in EBLHOOK() 36 if (a_type != AT_HWCAP) in EBLHOOK()
|
D | i386_auxv.c | 34 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) in EBLHOOK() 36 if (a_type != AT_HWCAP) in EBLHOOK()
|
D | ppc_auxv.c | 34 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) in EBLHOOK() 36 if (a_type != AT_HWCAP) in EBLHOOK()
|
/external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/ |
D | ppapi_plugin_start.c | 48 for (av = auxv; av->a_type != AT_NULL; ++av) { in grok_auxv() 49 if (av->a_type == AT_SYSINFO) in grok_auxv()
|
/external/gtest/include/gtest/ |
D | gtest-test-part.h | 60 TestPartResult(Type a_type, in TestPartResult() argument 64 : type_(a_type), in TestPartResult()
|
/external/mesa3d/src/gtest/include/gtest/ |
D | gtest-test-part.h | 60 TestPartResult(Type a_type, in TestPartResult() argument 64 : type_(a_type), in TestPartResult()
|
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/ |
D | gtest-test-part.h | 60 TestPartResult(Type a_type, in TestPartResult() argument 64 : type_(a_type), in TestPartResult()
|
/external/chromium/testing/gtest/include/gtest/ |
D | gtest-test-part.h | 60 TestPartResult(Type a_type, in TestPartResult() argument 64 : type_(a_type), in TestPartResult()
|
/external/llvm/utils/unittest/googletest/include/gtest/ |
D | gtest-test-part.h | 60 TestPartResult(Type a_type, in TestPartResult() argument 64 : type_(a_type), in TestPartResult()
|
/external/elfutils/libdwfl/ |
D | link_map.c | 90 if (u->a64[i].a_type == BE64 (PROBE_TYPE) in auxv_format_probe() 97 if (u->a64[i].a_type == LE64 (PROBE_TYPE) in auxv_format_probe() 109 if (u->a32[i].a_type == BE32 (PROBE_TYPE) in auxv_format_probe() 116 if (u->a32[i].a_type == LE32 (PROBE_TYPE) in auxv_format_probe() 653 if (av[i].a_type == BL##NN (AT_ENTRY)) \ in dwfl_link_map_report() 655 else if (av[i].a_type == BL##NN (AT_PHDR)) \ in dwfl_link_map_report() 657 else if (av[i].a_type == BL##NN (AT_PHNUM)) \ in dwfl_link_map_report() 659 else if (av[i].a_type == BL##NN (AT_PHENT)) \ in dwfl_link_map_report() 661 else if (av[i].a_type == BL##NN (AT_PAGESZ)) \ in dwfl_link_map_report()
|
/external/chromium_org/testing/gtest/include/gtest/ |
D | gtest-test-part.h | 60 TestPartResult(Type a_type, in TestPartResult() argument 64 : type_(a_type), in TestPartResult()
|
/external/ipsec-tools/src/libipsec/ |
D | pfkey.c | 1257 if (sa_parms->a_type == SADB_AALG_NONE) { 1267 if (sa_parms->a_type != SADB_AALG_NONE) { 1278 if (sa_parms->a_type != SADB_X_AALG_TCP_MD5) { 1304 if (sa_parms->a_type != SADB_AALG_NONE) 1352 sa_parms->a_type, sa_parms->e_type, 1385 if (sa_parms->a_type != SADB_AALG_NONE) { 2481 keymat, e_type, e_keylen, a_type, a_keylen, flags, in pfkey_send_update() argument 2488 u_int e_type, e_keylen, a_type, a_keylen, flags; 2508 psaa.a_type = a_type; 2522 keymat, e_type, e_keylen, a_type, a_keylen, flags, in pfkey_send_update_nat() argument [all …]
|
/external/openssl/include/openssl/ |
D | lhash.h | 129 #define DECLARE_LHASH_DOALL_ARG_FN(name, o_type, a_type) \ argument 131 #define IMPLEMENT_LHASH_DOALL_ARG_FN(name, o_type, a_type) \ argument 134 a_type *b = arg2; \
|