Home
last modified time | relevance | path

Searched refs:abi (Results 1 – 25 of 462) sorted by relevance

12345678910>>...19

/third_party/vixl/test/aarch64/
Dtest-abi.cc44 TEST(abi) { in TEST() argument
45 ABI abi; in TEST() local
47 VIXL_CHECK(abi.GetStackSpaceRequired() == 0); in TEST()
48 VIXL_CHECK(!abi.GetReturnGenericOperand<void>().IsValid()); in TEST()
50 VIXL_CHECK(abi.GetReturnGenericOperand<bool>().Equals(GenericOperand(w0))); in TEST()
51 VIXL_CHECK(abi.GetReturnGenericOperand<char>().Equals(GenericOperand(w0))); in TEST()
52 VIXL_CHECK(abi.GetReturnGenericOperand<int8_t>().Equals(GenericOperand(w0))); in TEST()
53 VIXL_CHECK(abi.GetReturnGenericOperand<uint8_t>().Equals(GenericOperand(w0))); in TEST()
55 abi.GetReturnGenericOperand<short>().Equals( // NOLINT(runtime/int) in TEST()
57 VIXL_CHECK(abi.GetReturnGenericOperand<int16_t>().Equals(GenericOperand(w0))); in TEST()
[all …]
/third_party/mesa3d/src/amd/llvm/
Dac_shader_abi.h55 void (*export_vertex)(struct ac_shader_abi *abi);
57 void (*emit_vertex)(struct ac_shader_abi *abi, unsigned stream, LLVMValueRef *addrs);
59 void (*emit_primitive)(struct ac_shader_abi *abi, unsigned stream);
61 void (*emit_vertex_with_counter)(struct ac_shader_abi *abi, unsigned stream,
64 LLVMValueRef (*load_inputs)(struct ac_shader_abi *abi,
69 LLVMValueRef (*load_tess_varyings)(struct ac_shader_abi *abi, LLVMTypeRef type,
74 LLVMValueRef (*load_ubo)(struct ac_shader_abi *abi, LLVMValueRef index);
84 …LLVMValueRef (*load_ssbo)(struct ac_shader_abi *abi, LLVMValueRef buffer, bool write, bool non_uni…
97 LLVMValueRef (*load_sampler_desc)(struct ac_shader_abi *abi, unsigned descriptor_set,
102 LLVMValueRef (*load_sample_position)(struct ac_shader_abi *abi, LLVMValueRef sample_id);
[all …]
/third_party/skia/third_party/externals/angle2/scripts/
Dgenerate_android_bp.py315 for abi in abi_targets:
316 for key in bps_for_abis[abi]:
317 if isinstance(bps_for_abis[abi][key], list):
319 for value in bps_for_abis[abi][key]:
338 if key in common_bp['arch'][abi].keys():
339 common_bp['arch'][abi][key].append(value)
341 common_bp['arch'][abi][key] = [value]
344 common_bp[key] = bps_for_abis[abi][key]
352 for abi in abi_targets:
353 if target not in build_info[abi].keys():
[all …]
/third_party/libffi/src/
Dprep_cif.c109 ffi_status FFI_HIDDEN ffi_prep_cif_core(ffi_cif *cif, ffi_abi abi, in ffi_prep_cif_core() argument
123 if (! (abi > FFI_FIRST_ABI && abi < FFI_LAST_ABI)) in ffi_prep_cif_core()
126 cif->abi = abi; in ffi_prep_cif_core()
136 ffi_prep_types (abi); in ffi_prep_cif_core()
221 ffi_status ffi_prep_cif(ffi_cif *cif, ffi_abi abi, unsigned int nargs, in ffi_prep_cif() argument
224 return ffi_prep_cif_core(cif, abi, 0, nargs, nargs, rtype, atypes); in ffi_prep_cif()
228 ffi_abi abi, in ffi_prep_cif_var() argument
234 return ffi_prep_cif_core(cif, abi, 1, nfixedargs, ntotalargs, rtype, atypes); in ffi_prep_cif_var()
251 ffi_get_struct_offsets (ffi_abi abi, ffi_type *struct_type, size_t *offsets) in ffi_get_struct_offsets() argument
253 if (! (abi > FFI_FIRST_ABI && abi < FFI_LAST_ABI)) in ffi_get_struct_offsets()
[all …]
/third_party/libffi/src/powerpc/
Dffi_linux64.c50 ffi_prep_types_linux64 (ffi_abi abi) in ffi_prep_types_linux64() argument
52 if ((abi & (FFI_LINUX | FFI_LINUX_LONG_DOUBLE_128)) == FFI_LINUX) in ffi_prep_types_linux64()
67 discover_homogeneous_aggregate (ffi_abi abi, in discover_homogeneous_aggregate() argument
76 if ((abi & FFI_LINUX_LONG_DOUBLE_128) == 0) in discover_homogeneous_aggregate()
85 else if ((abi & FFI_LINUX_LONG_DOUBLE_IEEE128) == 0) in discover_homogeneous_aggregate()
104 el_elt = discover_homogeneous_aggregate (abi, *el, &el_elnum); in discover_homogeneous_aggregate()
141 if ((cif->abi & FFI_LINUX_LONG_DOUBLE_128) != 0 || in ffi_prep_cif_linux64_core()
142 (cif->abi & FFI_LINUX_LONG_DOUBLE_IEEE128) != 0) in ffi_prep_cif_linux64_core()
146 if ((cif->abi & FFI_LINUX_LONG_DOUBLE_IEEE128) != 0) in ffi_prep_cif_linux64_core()
150 if ((cif->abi & FFI_LINUX_LONG_DOUBLE_128) == 0 && in ffi_prep_cif_linux64_core()
[all …]
Dffi_sysv.c47 ffi_prep_types_sysv (ffi_abi abi) in ffi_prep_types_sysv() argument
49 if ((abi & (FFI_SYSV | FFI_SYSV_LONG_DOUBLE_128)) == FFI_SYSV) in ffi_prep_types_sysv()
64 translate_float (int abi, int type) in translate_float() argument
68 && (abi & FFI_SYSV_LONG_DOUBLE_128) == 0) in translate_float()
71 if ((abi & FFI_SYSV_SOFT_FLOAT) != 0) in translate_float()
81 else if ((abi & FFI_SYSV_IBM_LONG_DOUBLE) == 0) in translate_float()
122 type = translate_float (cif->abi, type); in ffi_prep_cif_sysv_core()
153 if ((cif->abi & FFI_SYSV_STRUCT_RET) != 0 && size <= 8) in ffi_prep_cif_sysv_core()
179 typenum = translate_float (cif->abi, typenum); in ffi_prep_cif_sysv_core()
315 if ((cif->abi & FFI_SYSV) == 0) in ffi_prep_cif_sysv()
[all …]
/third_party/skia/third_party/externals/oboe/
Dprefab_build.sh39 for abi in ${ABIS[@]}
41 echo "Copying the ${abi} library"
42 cp -v "../${abi}/liboboe.so" "oboe-${version}/prefab/modules/oboe/libs/android.${abi}/"
46 for abi in ${ABIS[@]}
50 --stl c++_shared --ndk-version 21 --abi ${abi} \
54 echo "${abi} package verified"
56 echo "${abi} package verification failed"
/third_party/libffi/src/mips/
Dffi.c132 type = (ecif->cif->abi == FFI_N64 in ffi_prep_args()
133 || ecif->cif->abi == FFI_N64_SOFT_FLOAT) in ffi_prep_args()
136 if (i < 8 && (ecif->cif->abi == FFI_N32_SOFT_FLOAT in ffi_prep_args()
137 || ecif->cif->abi == FFI_N64_SOFT_FLOAT)) in ffi_prep_args()
336 if (cif->rtype->type != FFI_TYPE_STRUCT && cif->abi == FFI_O32) in ffi_prep_cif_machdep_int()
374 if (cif->abi == FFI_O32_SOFT_FLOAT) in ffi_prep_cif_machdep_int()
429 int soft_float = (cif->abi == FFI_N32_SOFT_FLOAT in ffi_prep_cif_machdep_int()
430 || cif->abi == FFI_N64_SOFT_FLOAT); in ffi_prep_cif_machdep_int()
539 if (cif->abi == FFI_N32_SOFT_FLOAT || cif->abi == FFI_N32) in ffi_prep_cif_machdep_int()
624 switch (cif->abi) in ffi_call_int()
[all …]
/third_party/libabigail/tests/data/test-abidiff/
Dtest-PR24552-v0.abi1 <abi-corpus-group path='mypath' architecture='elf-arm-aarch64'>
2 <abi-corpus path='vmlinux' architecture='elf-arm-aarch64'>
6 …<abi-instr version='1.0' address-size='64' path='file.h' comp-dir-path='common' language='LANG_C89…
9 </abi-instr>
10 </abi-corpus>
11 </abi-corpus-group>
Dtest-PR24552-v1.abi1 <abi-corpus-group path='mypath' architecture='elf-arm-aarch64'>
2 <abi-corpus path='vmlinux' architecture='elf-arm-aarch64'>
6 …<abi-instr version='1.0' address-size='64' path='file.h' comp-dir-path='common' language='LANG_C89…
9 </abi-instr>
10 </abi-corpus>
11 </abi-corpus-group>
/third_party/python/Modules/_ctypes/libffi_osx/
Dffi.c134 ffi_abi abi, in ffi_prep_cif() argument
146 if (abi <= FFI_FIRST_ABI || abi > FFI_DEFAULT_ABI) in ffi_prep_cif()
149 cif->abi = abi; in ffi_prep_cif()
169 && (cif->abi != FFI_V9 || cif->rtype->size > 32) in ffi_prep_cif()
206 && ((*ptr)->size > 16 || cif->abi != FFI_V9)) in ffi_prep_cif()
208 && cif->abi != FFI_V9)) in ffi_prep_cif()
/third_party/mesa3d/src/amd/vulkan/
Dradv_nir_to_llvm.c46 struct ac_shader_abi abi; member
81 radv_shader_context_from_abi(struct ac_shader_abi *abi) in radv_shader_context_from_abi() argument
83 return container_of(abi, struct radv_shader_context, abi); in radv_shader_context_from_abi()
215 load_sample_position(struct ac_shader_abi *abi, LLVMValueRef sample_id) in load_sample_position() argument
217 struct radv_shader_context *ctx = radv_shader_context_from_abi(abi); in load_sample_position()
235 visit_emit_vertex_with_counter(struct ac_shader_abi *abi, unsigned stream, LLVMValueRef vertexidx, in visit_emit_vertex_with_counter() argument
239 struct radv_shader_context *ctx = radv_shader_context_from_abi(abi); in visit_emit_vertex_with_counter()
277 visit_end_primitive(struct ac_shader_abi *abi, unsigned stream) in visit_end_primitive() argument
279 struct radv_shader_context *ctx = radv_shader_context_from_abi(abi); in visit_end_primitive()
285 radv_load_base_vertex(struct ac_shader_abi *abi, bool non_indexed_is_zero) in radv_load_base_vertex() argument
[all …]
/third_party/libwebsockets/contrib/abi/
DREADME.md9 The tools used are the abi-\* family available at https://github.com/lvc/ and
10 some example output is here: http://abi-laboratory.pro/tracker/timeline/libuv/
23 The abi monitoring stuff is now packaged in, eg, fedora, which is a lot
27 # dnf install abi-tracker vtable-dumper
33 make prefix=/usr/local target=abi-tracker
43 Use the `lws-abi-update.sh` script to download the source files, build them and
45 server for example. Modify the commented line in lws-abi-update.sh to do this.
47 As it is configured, lws-abi-update.sh will only download new source - ones
/third_party/libabigail/tests/data/test-read-ctf/
Dtest-fallback.abi1 <abi-corpus version='2.1' path='data/test-read-ctf/test-fallback.o'>
5 <abi-instr address-size='64' language='LANG_C'>
8 </abi-instr>
9 </abi-corpus>
Dtest8.o.abi1 <abi-corpus version='2.1' path='data/test-read-ctf/test8.o'>
5 <abi-instr address-size='64' language='LANG_C'>
12 </abi-instr>
13 </abi-corpus>
/third_party/rust/crates/bindgen/bindgen/codegen/postprocessing/
Dmerge_extern_blocks.rs21 abi, in visit_item_mod_mut()
31 extern_block.abi == abi in visit_item_mod_mut()
46 abi, in visit_item_mod_mut()
/third_party/libabigail/tests/data/
DMakefile.am81 test-abidiff/test-PR18166-libtirpc.so.abi \
83 test-abidiff/test-PR18791-v0.so.abi \
84 test-abidiff/test-PR18791-v1.so.abi \
85 test-abidiff/test-PR24552-v0.abi \
86 test-abidiff/test-PR24552-v1.abi \
102 test-abidiff/test-PR27985-v0.o.abi \
105 test-abidiff/test-PR27985-v1.o.abi \
106 test-abidiff/test-PR27616-squished-v0.abi \
107 test-abidiff/test-PR27616-squished-v1.abi \
179 test-abidiff-exit/test-fun-param-v0.abi \
[all …]
/third_party/rust/crates/bindgen/bindgen/ir/
Dfunction.rs231 let abi = self.to_string(); in to_tokens() localVariable
232 tokens.append_all(quote! { #abi }); in to_tokens()
254 Self::Known(abi) => abi.to_tokens(tokens), in to_tokens()
281 abi: ClangAbi, field
569 let abi = get_abi(call_conv); in from_ty() localVariable
571 if abi.is_unknown() { in from_ty()
581 abi, in from_ty()
596 pub(crate) fn abi( in abi() method
604 if let Some((abi, _)) = ctx in abi()
610 ClangAbi::Known(*abi) in abi()
[all …]
/third_party/vk-gl-cts/scripts/android/
Dbuild_apk.py357 for abi in NDKEnv.getKnownAbis():
358 cMakeCachePath = os.path.join(getNativeBuildPath(config, abi), "CMakeCache.txt")
438 def __init__ (self, abi): argument
439 self.abi = abi
445 log(config, "BuildNativeLibrary: %s" % self.abi)
446 buildNativeLibrary(config, self.abi)
688 def __init__ (self, package, abi): argument
690 self.buildPath = [NativeBuildPath(abi)]
727 for abi in self.abis:
728 paths.append([NativeBuildPath(abi), "libdeqp.so"])
[all …]
/third_party/libabigail/tests/data/test-read-dwarf/
Dtest-fallback.abi1 <abi-corpus version='2.1'>
5 …<abi-instr address-size='64' path='tests/data/test-read-dwarf/test-fallback.c' comp-dir-path='/hom…
8 </abi-instr>
9 </abi-corpus>
Dtest5.o.hash.abi1 <abi-corpus version='2.1'>
5 …<abi-instr address-size='64' path='test.cc' comp-dir-path='/home/dodji/libabigailtests' language='…
12 </abi-instr>
13 </abi-corpus>
Dtest5.o.abi1 <abi-corpus version='2.1'>
5 …<abi-instr address-size='64' path='test.cc' comp-dir-path='/home/dodji/libabigailtests' language='…
12 </abi-instr>
13 </abi-corpus>
/third_party/libabigail/tests/data/test-abidiff-exit/
Dtest-missing-alias.abi1 <abi-corpus path='test.so' soname='test.so'>
6 <abi-instr version='1.0' address-size='64' path='test.c' language='LANG_C89'>
11 </abi-instr>
12 </abi-corpus>
/third_party/node/deps/v8/
D.vpython31 {python: "cp27", abi: "cp27mu", platform: "manylinux1_x86_64"},
32 {python: "cp27", abi: "cp27mu", platform: "linux_arm64"},
33 {python: "cp27", abi: "cp27mu", platform: "linux_armv6l"},
35 {python: "cp27", abi: "cp27m", platform: "macosx_10_10_intel"},
36 {python: "cp27", abi: "cp27m", platform: "macosx_11_0_arm64"},
38 {python: "cp27", abi: "cp27m", platform: "win32"},
39 {python: "cp27", abi: "cp27m", platform: "win_amd64"}
/third_party/libffi/src/x86/
Dffi64.c407 if (cif->abi == FFI_EFI64 || cif->abi == FFI_GNUW64) in ffi_prep_cif_machdep()
410 if (cif->abi != FFI_UNIX64) in ffi_prep_cif_machdep()
568 FFI_ASSERT (cif->abi == FFI_UNIX64); in ffi_call_int()
682 if (cif->abi == FFI_EFI64 || cif->abi == FFI_GNUW64) in ffi_call()
702 if (cif->abi == FFI_EFI64 || cif->abi == FFI_GNUW64) in ffi_call_go()
743 if (cif->abi == FFI_EFI64 || cif->abi == FFI_GNUW64) in ffi_prep_closure_loc()
746 if (cif->abi != FFI_UNIX64) in ffi_prep_closure_loc()
871 if (cif->abi == FFI_EFI64 || cif->abi == FFI_GNUW64) in ffi_prep_go_closure()
874 if (cif->abi != FFI_UNIX64) in ffi_prep_go_closure()

12345678910>>...19