/external/oprofile/libabi/ |
D | abi.cpp | 28 abi::abi() in abi() function in abi 38 int abi::need(string const key) const throw (abi_exception) in need() 47 bool abi::operator==(abi const & other) const in operator ==() 53 ostream & operator<<(ostream & o, abi const & abi) in operator <<() argument 55 abi_iter i = abi.slots.begin(); in operator <<() 56 abi_iter e = abi.slots.end(); in operator <<() 65 istream & operator>>(istream & i, abi & abi) in operator >>() argument 69 abi.slots.clear(); in operator >>() 72 abi.slots[key] = val; in operator >>()
|
D | abi.h | 28 class abi { 30 abi(); 34 bool operator==(abi const & other) const; 35 friend std::ostream & operator<<(std::ostream & o, abi const & abi); 36 friend std::istream & operator>>(std::istream & i, abi & abi);
|
D | opimport.cpp | 51 abi const & theabi; 58 extractor(abi const & a, unsigned char const * src, size_t len) in extractor() 107 void import_from_abi(abi const & abi, void const * srcv, in import_from_abi() argument 114 extractor ext(abi, src, len); in import_from_abi() 116 memcpy(head->magic, src + abi.need("offsetof_header_magic"), 4); in import_from_abi() 134 src += abi.need("sizeof_struct_opd_header"); in import_from_abi() 140 src += abi.need("sizeof_odb_descr_t"); in import_from_abi() 144 src += abi.need("sizeof_odb_node_t"); in import_from_abi() 147 unsigned int step = abi.need("sizeof_odb_node_t"); in import_from_abi() 179 abi current_abi, input_abi; in main()
|
D | Makefile.am | 14 libabi_a_SOURCES = abi.cpp abi.h op_abi.c op_abi.h
|
/external/bluetooth/glib/gobject/ |
D | abicheck.sh | 8 …r:-.}/gobject.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-abi 11 nm -D -g --defined-only .libs/libgobject-2.0.so | cut -d ' ' -f 3 | sort > actual-abi 13 diff -u expected-abi actual-abi && rm expected-abi actual-abi
|
/external/bluetooth/glib/gio/ |
D | abicheck.sh | 8 …rcdir:-.}/gio.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-abi 11 nm -D -g --defined-only .libs/libgio-2.0.so | cut -d ' ' -f 3 | sort > actual-abi 13 diff -u expected-abi actual-abi && rm expected-abi actual-abi
|
/external/libffi/src/powerpc/ |
D | ffi.c | 141 if (ecif->cif->abi == FFI_LINUX_SOFT_FLOAT) in ffi_prep_args_SYSV() 176 if (ecif->cif->abi == FFI_LINUX_SOFT_FLOAT) in ffi_prep_args_SYSV() 192 if (ecif->cif->abi == FFI_LINUX_SOFT_FLOAT) in ffi_prep_args_SYSV() 215 if ((ecif->cif->abi != FFI_LINUX) in ffi_prep_args_SYSV() 216 && (ecif->cif->abi != FFI_LINUX_SOFT_FLOAT)) in ffi_prep_args_SYSV() 223 if (ecif->cif->abi == FFI_LINUX_SOFT_FLOAT) in ffi_prep_args_SYSV() 601 if (cif->abi == FFI_LINUX_SOFT_FLOAT) in ffi_prep_cif_machdep() 604 if (cif->abi != FFI_LINUX64) in ffi_prep_cif_machdep() 647 if (cif->abi != FFI_LINUX && cif->abi != FFI_LINUX64 in ffi_prep_cif_machdep() 648 && cif->abi != FFI_LINUX_SOFT_FLOAT) in ffi_prep_cif_machdep() [all …]
|
D | ffi_darwin.c | 202 if (size_al < 3 && ecif->cif->abi == FFI_DARWIN) in ffi_prep_args() 286 if (cif->abi == FFI_DARWIN) in ffi_prep_cif_machdep() 450 switch (cif->abi) in ffi_call() 541 switch (cif->abi) in ffi_prep_closure_loc() 545 FFI_ASSERT (cif->abi == FFI_DARWIN); in ffi_prep_closure_loc() 573 FFI_ASSERT (cif->abi == FFI_AIX); in ffi_prep_closure_loc() 710 if (size_al < 3 && cif->abi == FFI_DARWIN) in ffi_closure_helper_DARWIN()
|
/external/libffi/src/ |
D | prep_cif.c | 88 ffi_status ffi_prep_cif(ffi_cif *cif, ffi_abi abi, unsigned int nargs, in ffi_prep_cif() argument 96 FFI_ASSERT((abi > FFI_FIRST_ABI) && (abi <= FFI_DEFAULT_ABI)); in ffi_prep_cif() 98 cif->abi = abi; in ffi_prep_cif() 117 && (cif->abi != FFI_V9 || cif->rtype->size > 32) in ffi_prep_cif() 140 && ((*ptr)->size > 16 || cif->abi != FFI_V9)) in ffi_prep_cif() 142 && cif->abi != FFI_V9)) in ffi_prep_cif()
|
/external/clang/test/Driver/ |
D | darwin-objc-defaults.m | 10 // CHECK-CHECK-I386_OSX10_5: -fobjc-fragile-abi 19 // CHECK-CHECK-I386_OSX10_6: -fobjc-fragile-abi 28 // CHECK-CHECK-I386_IPHONE3_0: -fobjc-fragile-abi 39 // CHECK-CHECK-X86_64_OSX10_5-NOT: -fobjc-fragile-abi 48 // CHECK-CHECK-X86_64_OSX10_6-NOT: -fobjc-fragile-abi 57 // CHECK-CHECK-X86_64_IPHONE3_0-NOT: -fobjc-fragile-abi 68 // CHECK-CHECK-ARMV7_OSX10_5-NOT: -fobjc-fragile-abi 77 // CHECK-CHECK-ARMV7_OSX10_6-NOT: -fobjc-fragile-abi 86 // CHECK-CHECK-ARMV7_IPHONE3_0-NOT: -fobjc-fragile-abi
|
D | darwin-objc-options.m | 4 // RUN: -arch x86_64 -fobjc-abi-version=1 2> %t 8 // CHECK-CHECK-X86_64_ABI1: -fobjc-fragile-abi 13 // RUN: -arch i386 -fobjc-abi-version=2 2> %t 17 // CHECK-CHECK-I386_ABI2-NOT: -fobjc-fragile-abi
|
/external/clang/test/CodeGenObjC/ |
D | objc2-weak-ivar-debug.m | 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-fragile-abi -fobjc-gc -g -emit-llvm -o - %s 2 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-fragile-abi -fobjc-gc -g -emit-llvm -o - %s 3 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-fragile-abi -fobjc-gc -g -e… 4 // RUN: %clang_cc1 -x objective-c++ -triple i386-apple-darwin9 -fobjc-fragile-abi -fobjc-gc -g -emi…
|
D | fp2ret.m | 1 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-fragile-abi -emit-llvm -o - %s | \ 4 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-fragile-abi -emit-llvm -o - %s | \ 7 // RUN: %clang_cc1 -triple armv7-apple-darwin10 -fobjc-fragile-abi -emit-llvm -target-abi apcs-gnu …
|
D | fpret.m | 1 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-fragile-abi -emit-llvm -o - %s | \ 4 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-fragile-abi -emit-llvm -o - %s | \ 7 // RUN: %clang_cc1 -triple armv7-apple-darwin10 -fobjc-fragile-abi -emit-llvm -target-abi apcs-gnu …
|
D | class-type.m | 1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -fobjc-fragile-abi -emit-llvm -o - %s 2 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-fragile-abi -emit-llvm -o - %s 3 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-fragile-abi -emit-llvm -o - %s
|
D | bitfield-1.m | 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-fragile-abi -emit-llvm -o %t %s 2 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-fragile-abi -emit-llvm -o %t %s 3 // RUN: %clang_cc1 -triple i386-pc-linux-gnu -fobjc-fragile-abi -emit-llvm -o %t %s
|
D | bitfield-access.m | 1 // RUN: %clang_cc1 -triple i386-apple-darwin10 -fobjc-fragile-abi -emit-llvm -o %t1 %s 4 // RUN: %clang_cc1 -triple armv6-apple-darwin10 -fobjc-fragile-abi -target-abi apcs-gnu -emit-llvm …
|
D | objc2-weak-ivar.m | 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-fragile-abi -fobjc-gc -emit-llvm -o %t %s 2 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-fragile-abi -fobjc-gc -emit…
|
D | objc2-retain-codegen.m | 1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -fobjc-fragile-abi -fobjc-gc-only -emit-llvm -o %… 2 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-unknown-unknown -fobjc-fragile-abi -fobjc-gc-onl…
|
/external/libffi/src/cris/ |
D | ffi.c | 158 ffi_abi abi, unsigned int nargs, in ffi_prep_cif() argument 166 FFI_ASSERT ((abi > FFI_FIRST_ABI) && (abi <= FFI_DEFAULT_ABI)); in ffi_prep_cif() 168 cif->abi = abi; in ffi_prep_cif() 257 switch (cif->abi) in ffi_call() 371 FFI_ASSERT (cif->abi == FFI_SYSV); in ffi_prep_closure_loc()
|
/external/libffi/src/mips/ |
D | ffi.c | 127 (ecif->cif->abi == FFI_N64) ? FFI_TYPE_SINT64 : FFI_TYPE_SINT32; in ffi_prep_args() 299 if (cif->rtype->type != FFI_TYPE_STRUCT && cif->abi == FFI_O32) in ffi_prep_cif_machdep() 337 if (cif->abi == FFI_O32_SOFT_FLOAT) in ffi_prep_cif_machdep() 520 switch (cif->abi) in ffi_call() 577 FFI_ASSERT(cif->abi == FFI_O32 || cif->abi == FFI_O32_SOFT_FLOAT); in ffi_prep_closure_loc() 580 FFI_ASSERT(cif->abi == FFI_N32 || cif->abi == FFI_N64); in ffi_prep_closure_loc() 670 seen_int = (cif->abi == FFI_O32_SOFT_FLOAT); in ffi_closure_mips_inner_O32() 735 if (cif->abi == FFI_O32_SOFT_FLOAT) in ffi_closure_mips_inner_O32() 756 copy_struct_N32(char *target, unsigned offset, ffi_abi abi, ffi_type *type, in copy_struct_N32() argument 863 type = (cif->abi == FFI_N64) ? FFI_TYPE_SINT64 : FFI_TYPE_SINT32; in ffi_closure_mips_inner_N32() [all …]
|
/external/clang/test/Index/ |
D | complete-ivar-access.m | 53 // RUN: c-index-test -code-completion-at=%s:43:8 -fobjc-nonfragile-abi %s | FileCheck -check-prefix… 54 // RUN: c-index-test -code-completion-at=%s:48:8 -fobjc-nonfragile-abi %s | FileCheck -check-prefix… 65 // RUN: c-index-test -code-completion-at=%s:44:10 -fobjc-nonfragile-abi %s | FileCheck -check-prefi… 66 // RUN: c-index-test -code-completion-at=%s:49:10 -fobjc-nonfragile-abi %s | FileCheck -check-prefi…
|
D | complete-synthesized.m | 38 …-code-completion-at=%s:24:1 -target x86_64-apple-macosx10.7 -fobjc-nonfragile-abi %s | FileCheck %s 39 …-code-completion-at=%s:30:2 -target x86_64-apple-macosx10.7 -fobjc-nonfragile-abi %s | FileCheck %s 40 …-code-completion-at=%s:34:2 -target x86_64-apple-macosx10.7 -fobjc-nonfragile-abi %s | FileCheck %s
|
/external/valgrind/main/none/tests/arm/ |
D | Makefile.am | 39 -mfpu=neon -mfloat-abi=softfp \ 44 -mfpu=neon -mfloat-abi=softfp \ 48 -mfpu=neon -mfloat-abi=softfp \
|
/external/clang/test/Rewriter/ |
D | objc-ivar-receiver-1.m | 1 // RUN: %clang_cc1 -rewrite-objc -fobjc-fragile-abi %s -o - 2 // RUN: %clang_cc1 -rewrite-objc -fobjc-fragile-abi %s -o - | grep 'newInv->_container'
|