Home
last modified time | relevance | path

Searched refs:a_type (Results 1 – 25 of 62) sorted by relevance

123

/third_party/elfutils/libebl/
Deblauxvinfo.c88 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/
Dtest1-typedef-suppr.h1 struct a_type;
2 typedef struct a_type a_type; typedef
5 foo(a_type* a);
Dtest1-typedef-suppr-report-0.txt15 [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:
Dtest1-typedef-suppr-v0.c7 struct a_type struct
13 foo(a_type* a) in foo() argument
Dtest1-typedef-suppr-v1.c3 struct a_type struct
10 foo(a_type* a) in foo() argument
/third_party/python/Lib/
Ddataclasses.py646 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 …]
Dfilecmp.py173 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/
Dmod.rs92 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/
Dgelf_update_auxv.c71 if (unlikely (src->a_type > 0xffffffffll) in gelf_update_auxv()
87 auxv->a_type = src->a_type; in gelf_update_auxv()
Dgelf_getauxv.c81 dst->a_type = src->a_type; in gelf_getauxv()
/third_party/elfutils/backends/
Darm_auxv.c37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) in EBLHOOK()
39 if (a_type != AT_HWCAP) in EBLHOOK()
Dsparc_auxv.c37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) in EBLHOOK()
39 if (a_type != AT_HWCAP) in EBLHOOK()
Dalpha_auxv.c37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) in EBLHOOK()
39 if (a_type != AT_HWCAP) in EBLHOOK()
Di386_auxv.c37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) in EBLHOOK()
39 if (a_type != AT_HWCAP) in EBLHOOK()
Dppc_auxv.c37 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/
Dmustang_auxv.rs129 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
Dauxv.rs204 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/
Dgenerator_impl_binary_test.cc82 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/
Dfcntl14.c70 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/
Dnode_main.cc130 for (; auxv->a_type != AT_NULL; auxv++) { in main()
131 if (auxv->a_type == AT_SECURE) { in main()
/third_party/googletest/googletest/include/gtest/
Dgtest-test-part.h63 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/
Dgtest-test-part.h63 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/
Dcpu.c53 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/
Dlhash.h60 # 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/
Dvalidate_function.cpp43 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()

123