/third_party/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()
|
/third_party/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
|
/third_party/python/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 …]
|
D | filecmp.py | 173 a_type = stat.S_IFMT(a_stat.st_mode) 175 if a_type != b_type: 177 elif stat.S_ISDIR(a_type): 179 elif stat.S_ISREG(a_type):
|
/third_party/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)
|
/third_party/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()
|
/third_party/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 | 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 | 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()
|
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()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/param/ |
D | mustang_auxv.rs | 129 let Elf_auxv_t { a_type, a_val } = read(auxp); in init_from_auxp() 131 match a_type as _ { in init_from_auxp() 153 a_type: usize, field
|
D | auxv.rs | 204 let Elf_auxv_t { a_type, a_val } = read_unaligned(auxp); in init_from_auxp() 206 match a_type as _ { in init_from_auxp() 371 a_type: usize, field
|
/third_party/skia/third_party/externals/tint/src/writer/msl/ |
D | generator_impl_binary_test.cc | 82 auto* a_type = ty.i32(); in TEST_P() local 88 auto* a = Var("a", a_type); in TEST_P() 117 auto* a_type = ty.i32(); in TEST_P() local 123 auto* a = Var("a", a_type); in TEST_P()
|
/third_party/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()
|
/third_party/node/src/ |
D | node_main.cc | 130 for (; auxv->a_type != AT_NULL; auxv++) { in main() 131 if (auxv->a_type == AT_SECURE) { in main()
|
/third_party/googletest/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()
|
/third_party/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()
|
/third_party/ffmpeg/libavutil/arm/ |
D | cpu.c | 53 struct { uint32_t a_type; uint32_t a_val; } auxv; in get_hwcap() member 61 if (auxv.a_type == AT_HWCAP) { in get_hwcap()
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | lhash.h | 60 # define DECLARE_LHASH_DOALL_ARG_FN(name, o_type, a_type) \ argument 62 # define IMPLEMENT_LHASH_DOALL_ARG_FN(name, o_type, a_type) \ argument 65 a_type *b = arg2; \
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_function.cpp | 43 uint32_t a_type = a->GetOperandAs<uint32_t>(2); in DoPointeesLogicallyMatch() local 46 if (a_type == b_type) { in DoPointeesLogicallyMatch() 50 Instruction* a_type_inst = _.FindDef(a_type); in DoPointeesLogicallyMatch()
|