/external/jemalloc/include/jemalloc/internal/ |
D | rb.h | 27 #define rb_node(a_type) \ argument 29 a_type *rbn_left; \ 30 a_type *rbn_right_red; \ 33 #define rb_node(a_type) \ argument 35 a_type *rbn_left; \ 36 a_type *rbn_right; \ 42 #define rb_tree(a_type) \ argument 44 a_type *rbt_root; \ 48 #define rbtn_left_get(a_type, a_field, a_node) \ argument 50 #define rbtn_left_set(a_type, a_field, a_node, a_left) do { \ argument [all …]
|
D | ph.h | 19 #define phn(a_type) \ argument 21 a_type *phn_prev; \ 22 a_type *phn_next; \ 23 a_type *phn_lchild; \ 27 #define ph(a_type) \ argument 29 a_type *ph_root; \ 33 #define phn_lchild_get(a_type, a_field, a_phn) \ argument 35 #define phn_lchild_set(a_type, a_field, a_phn, a_lchild) do { \ argument 39 #define phn_next_get(a_type, a_field, a_phn) \ argument 41 #define phn_prev_set(a_type, a_field, a_phn, a_prev) do { \ argument [all …]
|
D | tsd.h | 80 #define malloc_tsd_types(a_name, a_type) argument 82 #define malloc_tsd_types(a_name, a_type) argument 84 #define malloc_tsd_types(a_name, a_type) \ argument 87 a_type val; \ 90 #define malloc_tsd_types(a_name, a_type) \ argument 93 a_type val; \ 98 #define malloc_tsd_protos(a_attr, a_name, a_type) \ argument 107 a_attr a_type * \ 110 a_name##tsd_set(a_type *val); 114 #define malloc_tsd_externs(a_name, a_type) \ argument [all …]
|
D | ql.h | 2 #define ql_head(a_type) \ argument 4 a_type *qlh_first; \ 9 #define ql_elm(a_type) qr(a_type) argument 67 #define ql_head_remove(a_head, a_type, a_field) do { \ argument 68 a_type *t = ql_first(a_head); \ 72 #define ql_tail_remove(a_head, a_type, a_field) do { \ argument 73 a_type *t = ql_last(a_head, a_field); \
|
D | qr.h | 2 #define qr(a_type) \ argument 4 a_type *qre_next; \ 5 a_type *qre_prev; \
|
/external/jemalloc_new/include/jemalloc/internal/ |
D | rb.h | 31 #define rb_node(a_type) \ argument 33 a_type *rbn_left; \ 34 a_type *rbn_right_red; \ 37 #define rb_node(a_type) \ argument 39 a_type *rbn_left; \ 40 a_type *rbn_right; \ 46 #define rb_tree(a_type) \ argument 48 a_type *rbt_root; \ 52 #define rbtn_left_get(a_type, a_field, a_node) \ argument 54 #define rbtn_left_set(a_type, a_field, a_node, a_left) do { \ argument [all …]
|
D | ph.h | 19 #define phn(a_type) \ argument 21 a_type *phn_prev; \ 22 a_type *phn_next; \ 23 a_type *phn_lchild; \ 27 #define ph(a_type) \ argument 29 a_type *ph_root; \ 33 #define phn_lchild_get(a_type, a_field, a_phn) \ argument 35 #define phn_lchild_set(a_type, a_field, a_phn, a_lchild) do { \ argument 39 #define phn_next_get(a_type, a_field, a_phn) \ argument 41 #define phn_prev_set(a_type, a_field, a_phn, a_prev) do { \ argument [all …]
|
D | ql.h | 7 #define ql_head(a_type) \ argument 9 a_type *qlh_first; \ 14 #define ql_elm(a_type) qr(a_type) argument 72 #define ql_head_remove(a_head, a_type, a_field) do { \ argument 73 a_type *t = ql_first(a_head); \ 77 #define ql_tail_remove(a_head, a_type, a_field) do { \ argument 78 a_type *t = ql_last(a_head, a_field); \
|
D | qr.h | 5 #define qr(a_type) \ argument 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 { \ argument 36 a_type *t; \ 48 #define qr_split(a_qr_a, a_qr_b, a_type, a_field) \ argument 49 qr_meld((a_qr_a), (a_qr_b), a_type, a_field)
|
/external/python/cpython2/Modules/ |
D | 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 …]
|
/external/elfutils/libebl/ |
D | eblauxvinfo.c | 88 ebl_auxv_info (Ebl *ebl, GElf_Xword a_type, const char **name, in ebl_auxv_info() argument 91 int result = ebl->auxv_info (a_type, name, format); in ebl_auxv_info() 92 if (result == 0 && a_type < nauxv_types && auxv_types[a_type].name != NULL) in ebl_auxv_info() 95 *name = auxv_types[a_type].name; in ebl_auxv_info() 96 *format = auxv_types[a_type].format; in ebl_auxv_info()
|
/external/elfutils/libelf/ |
D | gelf_update_auxv.c | 71 if (unlikely (src->a_type > 0xffffffffll) in gelf_update_auxv() 87 auxv->a_type = src->a_type; in gelf_update_auxv()
|
D | gelf_getauxv.c | 81 dst->a_type = src->a_type; in gelf_getauxv()
|
/external/python/cpython3/Lib/ |
D | dataclasses.py | 578 def _is_classvar(a_type, typing): argument 581 return (a_type is typing.ClassVar 582 or (type(a_type) is typing._GenericAlias 583 and a_type.__origin__ is typing.ClassVar)) 586 def _is_initvar(a_type, dataclasses): argument 589 return a_type is dataclasses.InitVar 592 def _is_type(annotation, cls, a_module, a_type, is_type_predicate): argument 645 ns = sys.modules.get(a_type.__module__).__dict__ 651 def _get_field(cls, a_name, a_type): argument 669 f.type = a_type [all …]
|
D | filecmp.py | 169 a_type = stat.S_IFMT(a_stat.st_mode) 171 if a_type != b_type: 173 elif stat.S_ISDIR(a_type): 175 elif stat.S_ISREG(a_type):
|
/external/elfutils/backends/ |
D | arm_auxv.c | 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) in EBLHOOK() 39 if (a_type != AT_HWCAP) in EBLHOOK()
|
D | alpha_auxv.c | 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) in EBLHOOK() 39 if (a_type != AT_HWCAP) in EBLHOOK()
|
D | sparc_auxv.c | 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) in EBLHOOK() 39 if (a_type != AT_HWCAP) in EBLHOOK()
|
D | ppc_auxv.c | 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) in EBLHOOK() 39 if (a_type != AT_HWCAP) in EBLHOOK()
|
D | i386_auxv.c | 37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) in EBLHOOK() 39 if (a_type != AT_HWCAP) in EBLHOOK()
|
/external/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl14.c | 70 short a_type; member 684 if (flock.l_type != thiscase->a_type) { in dochild() 689 thiscase->a_type); in dochild() 792 flock.l_type = thiscase->a_type; in run_test() 836 thiscase->a_type, fd, test, parent) < 0) { in run_test() 954 &thiscase->c_len, &thiscase->c_flag, &thiscase->a_type, in main() 1062 flock.l_type = thiscase->a_type; in main() 1087 thiscase->a_type, fd, test, parent) < 0) { in main()
|
/external/tensorflow/tensorflow/python/ops/ |
D | sparse_grad.py | 171 a_type = a_values.dtype.base_dtype 173 if a_type != b_type: 175 "different types: ", a_type, " and ", b_type) 176 if a_type in (ops.dtypes.complex64, ops.dtypes.complex128):
|
/external/google-breakpad/src/common/android/include/ |
D | elf.h | 79 uint32_t a_type; member 86 uint64_t a_type; member
|
/external/ipsec-tools/src/libipsec/ |
D | pfkey.c | 1195 if (sa_parms->a_type == SADB_AALG_NONE) { in pfkey_send_x1() 1205 if (sa_parms->a_type != SADB_AALG_NONE) { in pfkey_send_x1() 1216 if (sa_parms->a_type != SADB_X_AALG_TCP_MD5) { in pfkey_send_x1() 1242 if (sa_parms->a_type != SADB_AALG_NONE) in pfkey_send_x1() 1290 sa_parms->a_type, sa_parms->e_type, in pfkey_send_x1() 1323 if (sa_parms->a_type != SADB_AALG_NONE) { in pfkey_send_x1() 2359 caddr_t keymat, u_int e_type, u_int e_keylen, u_int a_type, in pfkey_send_update() argument 2378 psaa.a_type = a_type; in pfkey_send_update() 2393 caddr_t keymat, u_int e_type, u_int e_keylen, u_int a_type, in pfkey_send_update_nat() argument 2414 psaa.a_type = a_type; in pfkey_send_update_nat() [all …]
|
/external/jemalloc_new/test/unit/ |
D | rb.c | 5 #define rbtn_black_height(a_type, a_field, a_rbt, r_height) do { \ argument 6 a_type *rbp_bh_t; \ 8 NULL; rbp_bh_t = rbtn_left_get(a_type, a_field, \ 10 if (!rbtn_red_get(a_type, a_field, rbp_bh_t)) { \
|