HomeSort by relevance Sort by last modified time
    Searched refs:ABI (Results 1 - 25 of 634) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
abi-64.s 1 ! Check successful .abi assertion for 64-bit ABI.
4 .abi 64
abi-32.s 1 ! Check successful .abi assertion for 32-bit ABI.
4 .abi 32
immexpr32-2.d 1 #as: --abi=32
4 #name: Resolved 64-bit operand, 32-bit ABI.
immexpr64-2.d 1 #as: --abi=64
4 #name: Resolved 64-bit operand, 64-bit ABI.
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsABIInfo.h 1 //===---- MipsABIInfo.h - Information about MIPS ABI's --------------------===//
26 enum class ABI { Unknown, O32, N32, N64 };
29 ABI ThisABI;
32 MipsABIInfo(ABI ThisABI) : ThisABI(ThisABI) {}
34 static MipsABIInfo Unknown() { return MipsABIInfo(ABI::Unknown); }
35 static MipsABIInfo O32() { return MipsABIInfo(ABI::O32); }
36 static MipsABIInfo N32() { return MipsABIInfo(ABI::N32); }
37 static MipsABIInfo N64() { return MipsABIInfo(ABI::N64); }
41 bool IsKnown() const { return ThisABI != ABI::Unknown; }
42 bool IsO32() const { return ThisABI == ABI::O32;
    [all...]
  /external/abi-compliance-checker/modules/Internals/
XmlDump.pm 2 # Module for ABI Compliance Checker to create ABI dumps in XML format
7 # Copyright (C) 2012-2015 Andrey Ponomarenko's ABI Laboratory
31 my $ABI = $_[0];
34 $ABI_DUMP .= "<ABI_dump version=\"".$ABI->{"ABI_DUMP_VERSION"}."\"";
35 $ABI_DUMP .= " xml_format=\"".$ABI->{"XML_ABI_DUMP_VERSION"}."\"";
36 $ABI_DUMP .= " acc=\"".$ABI->{"ABI_COMPLIANCE_CHECKER_VERSION"}."\">\n";
38 $ABI_DUMP .= addTag("library", $ABI->{"LibraryName"});
39 $ABI_DUMP .= addTag("library_version", $ABI->{"LibraryVersion"});
40 $ABI_DUMP .= addTag("language", $ABI->{"Language"})
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/
ndk-test.sh 8 ABI=$1
9 if [ -z "$ABI" ]; then
10 >&2 echo "usage: $(basename $0) ABI"
14 case "$ABI" in
40 >&2 echo "Unknown ABI: $ABI"
50 sed -e "s:%ABI%:$ABI:g" -e "s:%TRIPLE%:$TRIPLE:g" \
54 adb push $LIBCXX_DIR/../libs/$ABI/libc++_shared.so /data/local/tmp
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
attr-gnu-4-0.d 5 MIPS ABI Flags Version: 0
11 FP ABI: Hard or soft float
elf_ase_micromips.d 9 MIPS ABI Flags Version: 0
15 FP ABI: Hard float \(double precision\)
elf_ase_mips16.d 9 MIPS ABI Flags Version: 0
15 FP ABI: Hard float \(double precision\)
module-mfp32.d 9 MIPS ABI Flags Version: 0
15 FP ABI: Hard float \(double precision\)
module-msingle-float.d 9 MIPS ABI Flags Version: 0
15 FP ABI: Hard float \(single precision\)
module-msoft-float.d 9 MIPS ABI Flags Version: 0
15 FP ABI: Soft float
odd-spreg.d 11 MIPS ABI Flags Version: 0
17 FP ABI: .*
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
attr-gnu-4-00.d 6 MIPS ABI Flags Version: 0
12 FP ABI: Hard or soft float
attr-gnu-4-08.d 10 MIPS ABI Flags Version: 0
16 FP ABI: \?\?\? \(8\)
attr-gnu-8-12.d 4 #warning: Warning: .* uses -mmsa \(set by .*\), .* uses unknown MSA ABI 2
attr-gnu-8-21.d 4 #warning: Warning: .* uses unknown MSA ABI 2 \(set by .*\), .* uses -mmsa
hash1b.d 3 #error: .gnu.hash is incompatible with the MIPS ABI
hash1c.d 3 #error: .gnu.hash is incompatible with the MIPS ABI
attr-gnu-4-18.d 5 #warning: Warning: .* uses -mdouble-float \(set by .*\), .* uses unknown floating point ABI 8
11 MIPS ABI Flags Version: 0
17 FP ABI: Hard float \(double precision\)
attr-gnu-4-28.d 5 #warning: Warning: .* uses -msingle-float \(set by .*\), .* uses unknown floating point ABI 8
11 MIPS ABI Flags Version: 0
17 FP ABI: Hard float \(single precision\)
attr-gnu-4-38.d 5 #warning: Warning: .* uses -msoft-float \(set by .*\), .* uses unknown floating point ABI 8
11 MIPS ABI Flags Version: 0
17 FP ABI: Soft float
  /cts/common/host-side/util/tests/src/com/android/compatibility/common/util/
TestFilterTest.java 27 private static final String ABI = "mips64";
30 private static final String ABI_NAME_FILTER = String.format("%s %s", ABI, NAME);
32 private static final String FULL_FILTER = String.format("%s %s %s", ABI, NAME, TEST);
36 assertNull("Incorrect abi", filter.getAbi());
43 assertEquals("Incorrect abi", ABI, filter.getAbi());
50 assertNull("Incorrect abi", filter.getAbi());
57 assertEquals("Incorrect abi", ABI, filter.getAbi());
68 TestFilter filter = new TestFilter(ABI, NAME, null)
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
strip-10.d 8 OS/ABI:[ \t]+UNIX - GNU

Completed in 328 milliseconds

1 2 3 4 5 6 7 8 91011>>