/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/cffi/testing/cffi0/ |
D | test_model.py | 76 a_type = ArrayType(PrimitiveType("int"), None) 77 assert a_type.get_c_name("") == "int[]" 78 assert a_type.get_c_name("x") == "int x[]" 79 assert a_type.get_c_name("*x") == "int(*x)[]" 80 assert a_type.get_c_name(" *x") == "int(*x)[]" 81 assert a_type.get_c_name("[5]") == "int[5][]" 82 a_type = ArrayType(unknown_type("foo_t"), 5) 83 assert a_type.get_c_name("") == "foo_t[5]" 84 assert a_type.get_c_name("x") == "foo_t x[5]" 85 assert a_type.get_c_name("*x") == "foo_t(*x)[5]" [all …]
|
/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/libabigail/tests/data/test-diff-suppr/ |
D | test1-typedef-suppr.h | 1 struct a_type; 2 typedef struct a_type a_type; typedef 5 foo(a_type* a);
|
D | test1-typedef-suppr-report-0.txt | 15 [C] 'function void foo(a_type*)' has some indirect sub-type changes: 16 parameter 1 of type 'a_type*' has sub-type changes: 17 in pointed to type 'typedef a_type': 18 underlying type 'struct a_type' changed:
|
D | test1-typedef-suppr-v0.c | 7 struct a_type struct 13 foo(a_type* a) in foo() argument
|
D | test1-typedef-suppr-v1.c | 3 struct a_type struct 10 foo(a_type* a) in foo() argument
|
/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 | 646 def _is_classvar(a_type, typing): argument 649 return (a_type is typing.ClassVar 650 or (type(a_type) is typing._GenericAlias 651 and a_type.__origin__ is typing.ClassVar)) 654 def _is_initvar(a_type, dataclasses): argument 657 return (a_type is dataclasses.InitVar 658 or type(a_type) is dataclasses.InitVar) 660 def _is_kw_only(a_type, dataclasses): argument 661 return a_type is dataclasses.KW_ONLY 664 def _is_type(annotation, cls, a_module, a_type, is_type_predicate): argument [all …]
|
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/x86_64/ |
D | mod.rs | 92 pub a_type: ::c_long, 228 self.a_type == other.a_type 234 self.a_type == other.a_type 243 .field("a_type", &self.a_type) 251 .field("a_type", &self.a_type)
|
/external/elfutils/backends/ |
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 | 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 | 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 | 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/google-breakpad/src/common/android/include/ |
D | elf.h | 79 uint32_t a_type; member 86 uint64_t a_type; member
|
/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/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/mesa3d/src/gtest/include/gtest/ |
D | gtest-test-part.h | 63 TestPartResult(Type a_type, const char* a_file_name, int a_line_number, in TestPartResult() argument 65 : type_(a_type), in TestPartResult()
|
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/include/gtest/ |
D | gtest-test-part.h | 63 TestPartResult(Type a_type, const char* a_file_name, int a_line_number, in TestPartResult() argument 65 : type_(a_type), in TestPartResult()
|