HomeSort by relevance Sort by last modified time
    Searched defs:ABI (Results 1 - 12 of 12) sorted by null

  /development/ndk/samples/hello-jni/jni/
hello-jni.c 34 #define ABI "armeabi-v7a/NEON (hard-float)"
36 #define ABI "armeabi-v7a/NEON"
40 #define ABI "armeabi-v7a (hard-float)"
42 #define ABI "armeabi-v7a"
46 #define ABI "armeabi"
49 #define ABI "x86"
51 #define ABI "x86_64"
53 #define ABI "mips64"
55 #define ABI "mips"
57 #define ABI "arm64-v8a
    [all...]
  /external/lldb/include/lldb/Target/
ABI.h 1 //===-- ABI.h ---------------------------------------------------*- C++ -*-===//
23 class ABI :
28 ~ABI();
59 // This is the method the ABI will call to actually calculate the return value.
60 // Don't put it in a persistant value object, that will be done by the ABI::GetReturnValueObject.
74 // Should return true if your ABI uses frames when doing stack backtraces. This
84 // the ABI, and false otherwise. This is used by the generic stack frame unwinding
98 // thumb, so any ARM ABI plug-ins would strip those bits.
128 // Classes that inherit from ABI can see and modify these
130 ABI();
    [all...]
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/
UnitTests.java 25 import com.android.cts.tradefed.testtype.Abi;
47 public static final IAbi ABI = new Abi("armeabi-v7a", "32");
  /external/clang/include/clang/Basic/
TargetOptions.h 36 /// If given, the name of the target ABI to use.
37 std::string ABI;
TargetInfo.h 140 /// __builtin_va_list as defind by the AArch64 ABI
144 /// __builtin_va_list as defined by the PNaCl ABI:
145 /// http://www.chromium.org/nativeclient/pnacl/bitcode-abi#TOC-Machine-Types
148 /// __builtin_va_list as defined by the Power ABI:
150 /// /resources/downloads/Power-Arch-32-bit-ABI-supp-1.0-Embedded.pdf
153 /// __builtin_va_list as defined by the x86-64 ABI:
154 /// http://www.x86-64.org/documentation/abi.pdf
157 /// __builtin_va_list as defined by ARM AAPCS ABI
637 /// \brief Get the ABI currently in use.
640 /// \brief Get the C++ ABI currently in use
    [all...]
  /external/lldb/source/Target/
ABI.cpp 1 //===-- ABI.cpp -------------------------------------------------*- C++ -*-===//
10 #include "lldb/Target/ABI.h"
22 ABI::FindPlugin (const ArchSpec &arch)
43 ABI::ABI()
50 ABI::~ABI()
56 ABI::GetRegisterInfoByName (const ConstString &name, RegisterInfo &info)
85 ABI::GetRegisterInfoByKind (RegisterKind reg_kind, uint32_t reg_num, RegisterInfo &info)
107 ABI::GetReturnValueObject (Thread &thread
    [all...]
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/device/
DeviceInfoCollectorFuncTest.java 38 DeviceInfoCollector.collectDeviceInfo(getDevice(), UnitTests.ABI.getName(), new File(
  /external/llvm/lib/Target/Mips/
MipsLongBranch.cpp 67 ABI(TM.getSubtarget<MipsSubtarget>().getTargetABI()),
68 LongBranchSeqSize(!IsPIC ? 2 : (ABI == MipsSubtarget::N64 ? 10 :
89 unsigned ABI;
276 if (ABI != MipsSubtarget::N64) {
MipsConstantIslandPass.cpp 346 unsigned ABI;
370 ABI(TM.getSubtarget<MipsSubtarget>().getTargetABI()),
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.h 25 #include "clang/Basic/ABI.h"
279 std::unique_ptr<CGCXXABI> ABI;
590 CGCXXABI &getCXXABI() const { return *ABI; }
901 /// info. This applies attributes necessary for handling the ABI as well as
    [all...]
MicrosoftCXXABI.cpp 10 // This provides C++ code generation targeting the Microsoft Visual C++ ABI.
12 // Visual C++ ABI, which is actually not very well documented at all outside
144 /// Non-base dtors should be emitted as delegating thunks in this ABI.
220 "Only deleting destructor thunks are available in this ABI");
618 /// MS-ABI polymorphic types.
783 // Otherwise, use the C ABI rules.
    [all...]
  /external/clang/include/clang/AST/
ASTContext.h 396 /// \brief The current C++ ABI.
397 std::unique_ptr<CXXABI> ABI;
    [all...]

Completed in 223 milliseconds