Searched defs:abi (Results 1 - 25 of 56) sorted by relevance

123

/external/vixl/test/aarch64/
H A Dtest-abi.cc30 #include "aarch64/abi-aarch64.h"
44 TEST(abi) {
45 ABI abi; local
47 VIXL_CHECK(abi.GetStackSpaceRequired() == 0);
48 VIXL_CHECK(!abi.GetReturnGenericOperand<void>().IsValid());
50 VIXL_CHECK(abi.GetReturnGenericOperand<bool>().Equals(GenericOperand(w0)));
51 VIXL_CHECK(abi.GetReturnGenericOperand<char>().Equals(GenericOperand(w0)));
52 VIXL_CHECK(abi.GetReturnGenericOperand<int8_t>().Equals(GenericOperand(w0)));
53 VIXL_CHECK(abi.GetReturnGenericOperand<uint8_t>().Equals(GenericOperand(w0)));
55 abi
[all...]
/external/python/cpython2/Modules/_ctypes/libffi_arm_wince/
H A Dprep_cif.c88 ffi_abi abi, unsigned int nargs,
97 FFI_ASSERT((abi > FFI_FIRST_ABI) && (abi <= FFI_DEFAULT_ABI));
99 cif->abi = abi;
123 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
143 && ((*ptr)->size > 16 || cif->abi != FFI_V9))
145 && cif->abi != FFI_V9))
87 ffi_prep_cif( ffi_cif *cif, ffi_abi abi, unsigned int nargs, ffi_type *rtype, ffi_type **atypes) argument
H A Dffi.h164 ffi_abi abi; member in struct:__anon19356
270 ffi_abi abi,
/external/python/cpython2/Modules/_ctypes/libffi_msvc/
H A Dprep_cif.c88 ffi_abi abi, unsigned int nargs,
97 FFI_ASSERT((abi > FFI_FIRST_ABI) && (abi <= FFI_DEFAULT_ABI));
99 cif->abi = abi;
123 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
143 && ((*ptr)->size > 16 || cif->abi != FFI_V9))
145 && cif->abi != FFI_V9))
87 ffi_prep_cif( ffi_cif *cif, ffi_abi abi, unsigned int nargs, ffi_type *rtype, ffi_type **atypes) argument
H A Dffi.h164 ffi_abi abi; member in struct:__anon19362
272 ffi_abi abi,
/external/python/cpython2/Modules/_ctypes/libffi_osx/
H A Dffi.c133 ffi_abi abi,
141 if (abi <= FFI_FIRST_ABI || abi > FFI_DEFAULT_ABI)
148 cif->abi = abi;
168 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
205 && ((*ptr)->size > 16 || cif->abi != FFI_V9))
207 && cif->abi != FFI_V9))
131 ffi_prep_cif( ffi_cif* cif, ffi_abi abi, unsigned int nargs, ffi_type* rtype, ffi_type** atypes) argument
/external/python/cpython3/Modules/_ctypes/libffi_msvc/
H A Dprep_cif.c88 ffi_abi abi, unsigned int nargs,
97 FFI_ASSERT((abi > FFI_FIRST_ABI) && (abi <= FFI_DEFAULT_ABI));
99 cif->abi = abi;
123 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
143 && ((*ptr)->size > 16 || cif->abi != FFI_V9))
145 && cif->abi != FFI_V9))
87 ffi_prep_cif( ffi_cif *cif, ffi_abi abi, unsigned int nargs, ffi_type *rtype, ffi_type **atypes) argument
/external/python/cpython3/Modules/_ctypes/libffi_osx/
H A Dffi.c134 ffi_abi abi,
146 if (abi <= FFI_FIRST_ABI || abi > FFI_DEFAULT_ABI)
149 cif->abi = abi;
169 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
206 && ((*ptr)->size > 16 || cif->abi != FFI_V9))
208 && cif->abi != FFI_V9))
132 ffi_prep_cif( ffi_cif* cif, ffi_abi abi, unsigned int nargs, ffi_type* rtype, ffi_type** atypes) argument
/external/libffi/src/powerpc/
H A Dffi.c38 ffi_prep_types (ffi_abi abi) argument
42 ffi_prep_types_linux64 (abi);
44 ffi_prep_types_sysv (abi);
/external/perfetto/src/tracing/core/
H A Dtrace_writer_impl_unittest.cc89 SharedMemoryABI* abi = arbiter_->shmem_abi_for_testing(); local
92 uint32_t page_layout = abi->page_layout_dbg(page_idx);
95 auto chunk_state = abi->GetChunkState(page_idx, chunk_idx);
98 auto chunk = abi->TryAcquireChunkForReading(page_idx, chunk_idx);
/external/python/cpython2/Modules/_ctypes/libffi/src/powerpc/
H A Dffi.c38 ffi_prep_types (ffi_abi abi) argument
42 ffi_prep_types_linux64 (abi);
44 ffi_prep_types_sysv (abi);
/external/python/cpython3/Modules/_ctypes/libffi/src/powerpc/
H A Dffi.c38 ffi_prep_types (ffi_abi abi) argument
42 ffi_prep_types_linux64 (abi);
44 ffi_prep_types_sysv (abi);
/external/libffi/src/
H A Dprep_cif.c107 ffi_status FFI_HIDDEN ffi_prep_cif_core(ffi_cif *cif, ffi_abi abi, argument
121 if (! (abi > FFI_FIRST_ABI && abi < FFI_LAST_ABI))
124 cif->abi = abi;
132 ffi_prep_types (abi);
151 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
184 && ((*ptr)->size > 16 || cif->abi != FFI_V9))
186 && cif->abi != FFI_V9))
226 ffi_status ffi_prep_cif(ffi_cif *cif, ffi_abi abi, unsigne argument
232 ffi_prep_cif_var(ffi_cif *cif, ffi_abi abi, unsigned int nfixedargs, unsigned int ntotalargs, ffi_type *rtype, ffi_type **atypes) argument
[all...]
/external/python/cpython2/Modules/_ctypes/libffi/src/
H A Dprep_cif.c107 ffi_status FFI_HIDDEN ffi_prep_cif_core(ffi_cif *cif, ffi_abi abi, argument
121 if (! (abi > FFI_FIRST_ABI && abi < FFI_LAST_ABI))
124 cif->abi = abi;
132 ffi_prep_types (abi);
147 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
176 && ((*ptr)->size > 16 || cif->abi != FFI_V9))
178 && cif->abi != FFI_V9))
218 ffi_status ffi_prep_cif(ffi_cif *cif, ffi_abi abi, unsigne argument
224 ffi_prep_cif_var(ffi_cif *cif, ffi_abi abi, unsigned int nfixedargs, unsigned int ntotalargs, ffi_type *rtype, ffi_type **atypes) argument
[all...]
/external/python/cpython3/Modules/_ctypes/libffi/src/
H A Dprep_cif.c107 ffi_status FFI_HIDDEN ffi_prep_cif_core(ffi_cif *cif, ffi_abi abi, argument
121 if (! (abi > FFI_FIRST_ABI && abi < FFI_LAST_ABI))
124 cif->abi = abi;
132 ffi_prep_types (abi);
147 && (cif->abi != FFI_V9 || cif->rtype->size > 32)
176 && ((*ptr)->size > 16 || cif->abi != FFI_V9))
178 && cif->abi != FFI_V9))
218 ffi_status ffi_prep_cif(ffi_cif *cif, ffi_abi abi, unsigne argument
224 ffi_prep_cif_var(ffi_cif *cif, ffi_abi abi, unsigned int nfixedargs, unsigned int ntotalargs, ffi_type *rtype, ffi_type **atypes) argument
[all...]
/external/libffi/src/cris/
H A Dffi.c158 ffi_abi abi, unsigned int isvariadic,
169 FFI_ASSERT (abi > FFI_FIRST_ABI && abi < FFI_LAST_ABI);
171 cif->abi = abi;
260 switch (cif->abi)
374 FFI_ASSERT (cif->abi == FFI_SYSV);
157 ffi_prep_cif_core(ffi_cif * cif, ffi_abi abi, unsigned int isvariadic, unsigned int nfixedargs, unsigned int ntotalargs, ffi_type * rtype, ffi_type ** atypes) argument
/external/python/cpython2/Modules/_ctypes/libffi/src/cris/
H A Dffi.c158 ffi_abi abi, unsigned int isvariadic,
169 FFI_ASSERT (abi > FFI_FIRST_ABI && abi < FFI_LAST_ABI);
171 cif->abi = abi;
260 switch (cif->abi)
374 FFI_ASSERT (cif->abi == FFI_SYSV);
157 ffi_prep_cif_core(ffi_cif * cif, ffi_abi abi, unsigned int isvariadic, unsigned int nfixedargs, unsigned int ntotalargs, ffi_type * rtype, ffi_type ** atypes) argument
/external/python/cpython3/Modules/_ctypes/libffi/src/cris/
H A Dffi.c158 ffi_abi abi, unsigned int isvariadic,
169 FFI_ASSERT (abi > FFI_FIRST_ABI && abi < FFI_LAST_ABI);
171 cif->abi = abi;
260 switch (cif->abi)
374 FFI_ASSERT (cif->abi == FFI_SYSV);
157 ffi_prep_cif_core(ffi_cif * cif, ffi_abi abi, unsigned int isvariadic, unsigned int nfixedargs, unsigned int ntotalargs, ffi_type * rtype, ffi_type ** atypes) argument
/external/libffi/src/mips/
H A Dffi.c131 type = (ecif->cif->abi == FFI_N64
132 || ecif->cif->abi == FFI_N64_SOFT_FLOAT)
135 if (i < 8 && (ecif->cif->abi == FFI_N32_SOFT_FLOAT
136 || ecif->cif->abi == FFI_N64_SOFT_FLOAT))
334 if (cif->rtype->type != FFI_TYPE_STRUCT && cif->abi == FFI_O32)
372 if (cif->abi == FFI_O32_SOFT_FLOAT)
427 int soft_float = (cif->abi == FFI_N32_SOFT_FLOAT
428 || cif->abi == FFI_N64_SOFT_FLOAT);
535 if (cif->abi == FFI_N32_SOFT_FLOAT || cif->abi
866 copy_struct_N32(char *target, unsigned offset, ffi_abi abi, ffi_type *type, int argn, unsigned arg_offset, ffi_arg *ar, ffi_arg *fpr, int soft_float) argument
[all...]
/external/libffi/src/x86/
H A Dffi.c54 const int cabi = ecif->cif->abi;
294 if (cif->abi == FFI_MS_CDECL)
330 if (cif->abi == FFI_SYSV || cif->abi == FFI_UNIX64)
379 switch (cif->abi)
401 ffi_call_win32(ffi_prep_args, &ecif, cif->abi, cif->bytes, cif->flags,
528 const int cabi = cif->abi;
729 if (cif->abi == FFI_WIN64)
738 if (cif->abi == FFI_SYSV)
744 else if (cif->abi
847 const unsigned int abi = cif->abi; local
[all...]
/external/libunwind/include/tdep-mips/
H A Dlibunwind_i.h56 mips_abi_t abi; member in struct:unw_addr_space
270 else if (c->as->abi == UNW_MIPS_ABI_O32)
292 else if (c->as->abi == UNW_MIPS_ABI_O32)
/external/perf_data_converter/src/quipper/
H A Dsample_info_reader.cc267 // { u64 abi; # enum perf_sample_regs_abi
271 u64 abi; local
272 if (!reader.ReadUint64(&abi)) {
275 size_t weight = abi == 0 ? 0 : __builtin_popcountll(attr.sample_regs_user);
482 // { u64 abi; # enum perf_sample_regs_abi
/external/python/cpython2/Modules/_ctypes/libffi/src/mips/
H A Dffi.c131 type = (ecif->cif->abi == FFI_N64
132 || ecif->cif->abi == FFI_N64_SOFT_FLOAT)
135 if (i < 8 && (ecif->cif->abi == FFI_N32_SOFT_FLOAT
136 || ecif->cif->abi == FFI_N64_SOFT_FLOAT))
334 if (cif->rtype->type != FFI_TYPE_STRUCT && cif->abi == FFI_O32)
372 if (cif->abi == FFI_O32_SOFT_FLOAT)
427 int soft_float = (cif->abi == FFI_N32_SOFT_FLOAT
428 || cif->abi == FFI_N64_SOFT_FLOAT);
535 if (cif->abi == FFI_N32_SOFT_FLOAT || cif->abi
866 copy_struct_N32(char *target, unsigned offset, ffi_abi abi, ffi_type *type, int argn, unsigned arg_offset, ffi_arg *ar, ffi_arg *fpr, int soft_float) argument
[all...]
/external/python/cpython2/Modules/_ctypes/libffi_osx/include/
H A Dffi.h171 ffi_abi abi; member in struct:ffi_cif
307 ffi_abi abi,
/external/python/cpython3/Modules/_ctypes/libffi/src/mips/
H A Dffi.c131 type = (ecif->cif->abi == FFI_N64
132 || ecif->cif->abi == FFI_N64_SOFT_FLOAT)
135 if (i < 8 && (ecif->cif->abi == FFI_N32_SOFT_FLOAT
136 || ecif->cif->abi == FFI_N64_SOFT_FLOAT))
334 if (cif->rtype->type != FFI_TYPE_STRUCT && cif->abi == FFI_O32)
372 if (cif->abi == FFI_O32_SOFT_FLOAT)
427 int soft_float = (cif->abi == FFI_N32_SOFT_FLOAT
428 || cif->abi == FFI_N64_SOFT_FLOAT);
535 if (cif->abi == FFI_N32_SOFT_FLOAT || cif->abi
866 copy_struct_N32(char *target, unsigned offset, ffi_abi abi, ffi_type *type, int argn, unsigned arg_offset, ffi_arg *ar, ffi_arg *fpr, int soft_float) argument
[all...]

Completed in 453 milliseconds

123