/external/llvm-project/openmp/runtime/cmake/ |
D | LibompGetArchitecture.cmake | 11 # Determine the architecture from predefined compiler macros 12 # The architecture name can only contain alphanumeric characters and underscores (i.e., C identifie… 15 # - Returns the architecture in return_arch 19 #error ARCHITECTURE=mic 21 #error ARCHITECTURE=x86_64 23 #error ARCHITECTURE=i386 25 #error ARCHITECTURE=arm 27 #error ARCHITECTURE=arm 29 #error ARCHITECTURE=arm 31 #error ARCHITECTURE=arm [all …]
|
/external/llvm-project/llvm/include/llvm/TextAPI/MachO/ |
D | Architecture.h | 1 //===- llvm/TextAPI/MachO/Architecture.h - Architecture ---------*- C++ -*-===// 9 // Defines the architecture enum and helper methods. 26 /// Defines the architecture slices that are supported by Text-based Stub files. 27 enum Architecture : uint8_t { enum 29 #include "llvm/TextAPI/MachO/Architecture.def" 34 /// Convert a CPU Type and Subtype pair to an architecture slice. 35 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType); 37 /// Convert a name to an architecture slice. 38 Architecture getArchitectureFromName(StringRef Name); 40 /// Convert an architecture slice to a string. [all …]
|
D | ArchitectureSet.h | 9 // Defines the architecture set. 16 #include "llvm/TextAPI/MachO/Architecture.h" 40 ArchitectureSet(Architecture Arch) : ArchitectureSet() { set(Arch); } in ArchitectureSet() 41 ArchitectureSet(const std::vector<Architecture> &Archs); 43 void set(Architecture Arch) { in set() 49 void clear(Architecture Arch) { ArchSet &= ~(1U << static_cast<int>(Arch)); } in clear() 51 bool has(Architecture Arch) const { in has() 71 : public std::iterator<std::forward_iterator_tag, Architecture, size_t> { 94 Architecture operator*() const { return static_cast<Architecture>(Index); } 127 ArchitectureSet &operator|=(const Architecture &Arch) { [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TextAPI/MachO/ |
D | Architecture.h | 1 //===- llvm/TextAPI/MachO/Architecture.h - Architecture ---------*- C++ -*-===// 9 // Defines the architecture enum and helper methods. 23 /// Defines the architecture slices that are supported by Text-based Stub files. 24 enum Architecture : uint8_t { enum 26 #include "llvm/TextAPI/MachO/Architecture.def" 31 /// Convert a CPU Type and Subtype pair to an architecture slice. 32 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType); 34 /// Convert a name to an architecture slice. 35 Architecture getArchitectureFromName(StringRef Name); 37 /// Convert an architecture slice to a string. [all …]
|
D | ArchitectureSet.h | 9 // Defines the architecture set. 17 #include "llvm/TextAPI/MachO/Architecture.h" 37 ArchitectureSet(Architecture Arch) : ArchitectureSet() { set(Arch); } in ArchitectureSet() 38 ArchitectureSet(const std::vector<Architecture> &Archs); 40 void set(Architecture Arch) { in set() 46 void clear(Architecture Arch) { ArchSet &= ~(1U << static_cast<int>(Arch)); } in clear() 48 bool has(Architecture Arch) const { in has() 68 : public std::iterator<std::forward_iterator_tag, Architecture, size_t> { 91 Architecture operator*() const { return static_cast<Architecture>(Index); } 124 ArchitectureSet &operator|=(const Architecture &Arch) { [all …]
|
/external/llvm/test/Object/ |
D | nm-universal-binary.test | 20 CHECK-OBJ: macho-universal.x86_64.i386 (for architecture x86_64): 22 CHECK-OBJ: macho-universal.x86_64.i386 (for architecture i386): 25 CHECK-64-OBJ: macho-universal64.x86_64.i386 (for architecture x86_64): 27 CHECK-64-OBJ: macho-universal64.x86_64.i386 (for architecture i386): 34 CHECK-OBJ-armv7m-NOT: Unknown architecture named 35 CHECK-OBJ-armv7m: does not contain architecture 37 CHECK-OBJ-foobar: Unknown architecture named 38 CHECK-OBJ-foobar: does not contain architecture 40 CHECK-AR: macho-universal-archive.x86_64.i386(hello.o) (for architecture x86_64): 46 CHECK-AR: macho-universal-archive.x86_64.i386(foo.o) (for architecture i386): [all …]
|
/external/llvm-project/llvm/test/Object/ |
D | nm-universal-binary.test | 20 CHECK-OBJ: macho-universal.x86_64.i386 (for architecture x86_64): 22 CHECK-OBJ: macho-universal.x86_64.i386 (for architecture i386): 25 CHECK-64-OBJ: macho-universal64.x86_64.i386 (for architecture x86_64): 27 CHECK-64-OBJ: macho-universal64.x86_64.i386 (for architecture i386): 34 CHECK-OBJ-armv7m-NOT: Unknown architecture named 35 CHECK-OBJ-armv7m: does not contain architecture 37 CHECK-OBJ-foobar: Unknown architecture named 38 CHECK-OBJ-foobar: does not contain architecture 40 CHECK-AR: macho-universal-archive.x86_64.i386(hello.o) (for architecture x86_64): 46 CHECK-AR: macho-universal-archive.x86_64.i386(foo.o) (for architecture i386): [all …]
|
/external/llvm-project/llvm/lib/TextAPI/MachO/ |
D | Architecture.cpp | 1 //===- Architecture.cpp ---------------------------------------------------===// 9 // Implements the architecture helper functions. 13 #include "llvm/TextAPI/MachO/Architecture.h" 23 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType) { in getArchitectureFromCpuType() 28 #include "llvm/TextAPI/MachO/Architecture.def" in getArchitectureFromCpuType() 34 Architecture getArchitectureFromName(StringRef Name) { in getArchitectureFromName() 35 return StringSwitch<Architecture>(Name) in getArchitectureFromName() 37 #include "llvm/TextAPI/MachO/Architecture.def" in getArchitectureFromName() 42 StringRef getArchitectureName(Architecture Arch) { in getArchitectureName() 47 #include "llvm/TextAPI/MachO/Architecture.def" in getArchitectureName() [all …]
|
/external/llvm-project/llvm/test/tools/llvm-lipo/ |
D | segalign.test | 5 # segalign expects an architecture type followed by a hexadecimal value for alignment 10 # CHECK_SMALL_ARM64-NEXT: architecture i386 14 # CHECK_SMALL_ARM64-NEXT: architecture x86_64 18 # CHECK_SMALL_ARM64-NEXT: architecture arm64 25 # CHECK_SMALL_ARM64_NO_SEGALIGN: architecture arm64 36 # CHECK_SMALL_ARMV7-NEXT: architecture armv7 40 # CHECK_SMALL_ARMV7-NEXT: architecture i386 44 # CHECK_SMALL_ARMV7-NEXT: architecture x86_64 52 # CHECK_SMALL_ARMV7_NO_SEGALIGN-NEXT: architecture i386 56 # CHECK_SMALL_ARMV7_NO_SEGALIGN-NEXT: architecture x86_64 [all …]
|
/external/llvm-project/llvm/docs/CommandGuide/ |
D | llvm-lipo.rst | 13 …es, extract regular object files from universal binaries, and display architecture information abo… 27 .. option:: -verify_arch <architecture 1> [<architecture 2> ...] 35 Each architecture is separated by a single whitespace. 41 The descriptions include the filename and architecture types separated by whitespace. 44 Non-fat file: <filename> is architecture: <architecture> 48 Take a single universal binary input file and the thin flag followed by an architecture type. 49 Require the output flag to be specified, and output a thin binary of the specified architecture. 59 The replace flag is followed by an architecture type, and a thin input file. 60 Output a universal binary with the specified architecture slice in the 66 The segalign flag is followed by an architecture type, and an alignment. [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/ |
D | Architecture.cpp | 1 //===- Architecture.cpp ---------------------------------------------------===// 9 // Implements the architecture helper functions. 13 #include "llvm/TextAPI/MachO/Architecture.h" 20 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType) { in getArchitectureFromCpuType() 25 #include "llvm/TextAPI/MachO/Architecture.def" in getArchitectureFromCpuType() 31 Architecture getArchitectureFromName(StringRef Name) { in getArchitectureFromName() 32 return StringSwitch<Architecture>(Name) in getArchitectureFromName() 34 #include "llvm/TextAPI/MachO/Architecture.def" in getArchitectureFromName() 39 StringRef getArchitectureName(Architecture Arch) { in getArchitectureName() 44 #include "llvm/TextAPI/MachO/Architecture.def" in getArchitectureName() [all …]
|
/external/llvm-project/lldb/packages/Python/lldbsuite/test/builders/ |
D | builder.py | 14 """Returns the architecture in effect the test suite is running with.""" 30 def getArchCFlags(self, architecture): argument 91 def getArchSpec(self, architecture): argument 93 Helper function to return the key-value string to specify the architecture 96 return ("ARCH=" + architecture) if architecture else "" 132 architecture=None, argument 142 self.getArchCFlags(architecture), 143 self.getArchSpec(architecture), 158 architecture=None, argument 168 self.getArchCFlags(architecture), [all …]
|
/external/llvm-project/llvm/docs/ |
D | CompilerWriterInfo.rst | 2 Architecture & Platform Information for Compiler Writers 19 * `ARMv8-A Architecture Reference Manual <https://developer.arm.com/docs/ddi0487/latest>`_ This doc… 21 …A Architecture Reference Manual <https://developer.arm.com/docs/ddi0406/latest>`_ This has some us… 23 * `ARMv7-M Architecture Reference Manual <https://developer.arm.com/docs/ddi0403/latest>`_ This cov… 25 * `ARMv6-M Architecture Reference Manual <https://developer.arm.com/docs/ddi0419/latest>`_ This cov… 35 * `Run-time ABI for the ARM Architecture <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0043d… 45 * `Lanai Instruction Set Architecture <http://g.co/lanai/isa>`_ 51 * `MIPS Processor Architecture <https://www.mips.com/products/>`_ 61 * `Power Instruction Set Architecture, Version 3.0B <https://openpowerfoundation.org/?resource_lib=… 65 * `Power Instruction Set Architecture, Version 2.07B <https://openpowerfoundation.org/?resource_lib… [all …]
|
/external/llvm-project/openmp/runtime/tools/lib/ |
D | Platform.pm | 42 # Canonize architecture name. 46 if ( $arch =~ m{\A\s*(?:32|IA-?32|IA-?32 architecture|i[3456]86|x86)\s*\z}i ) { 73 # Canonize Intel(R) Many Integrated Core Architecture name. 90 { # Return legal approved architecture name. 92 "32" => "IA-32 architecture", 96 "mic" => "Intel(R) Many Integrated Core Architecture", 112 { # Return architecture name suitable for Intel compiler setup scripts. 190 "target-architecture|target-arch|architecture|arch=s" => 193 die "Bad value of --target-architecture option: \"$_[ 1 ]\"\n"; 195 "target-mic-architecture|target-mic-arch|mic-architecture|mic-arch=s" => [all …]
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | ArchSpec.h | 26 /// \class ArchSpec ArchSpec.h "lldb/Utility/ArchSpec.h" An architecture 31 /// of strings to architecture enumeration values confined to this class 32 /// allows new architecture support to be added easily. 258 /// Constructor over architecture name. 261 /// type and architecture name. 276 /// Returns a static string representing the current architecture. 279 /// architecture. 282 /// if MIPS architecture return true. 287 /// Returns a string representing current architecture as a target CPU for 291 /// architecture. [all …]
|
/external/boringssl/src/crypto/ |
D | cpu-arm-linux_test.cc | 41 "CPU architecture: 7\n" in TEST() 62 "CPU architecture: 7\n" in TEST() 92 "CPU architecture: 7\n" in TEST() 113 "CPU architecture: 7\n" in TEST() 132 "CPU architecture: 8\n" in TEST() 141 "CPU architecture: 8\n" in TEST() 150 "CPU architecture: 8\n" in TEST() 159 "CPU architecture: 8\n" in TEST() 166 HWCAP_NEON, // CPU architecture 8 implies NEON. in TEST() 182 "CPU architecture: 8\n", in TEST() [all …]
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/ |
D | cpu-arm-linux_test.cc | 41 "CPU architecture: 7\n" in TEST() 62 "CPU architecture: 7\n" in TEST() 92 "CPU architecture: 7\n" in TEST() 113 "CPU architecture: 7\n" in TEST() 132 "CPU architecture: 8\n" in TEST() 141 "CPU architecture: 8\n" in TEST() 150 "CPU architecture: 8\n" in TEST() 159 "CPU architecture: 8\n" in TEST() 166 HWCAP_NEON, // CPU architecture 8 implies NEON. in TEST() 182 "CPU architecture: 8\n", in TEST() [all …]
|
/external/conscrypt/repackaged/openjdk/src/main/java/com/android/org/conscrypt/ |
D | HostProperties.java | 51 static final Architecture ARCH; 85 enum Architecture { enum in HostProperties 105 * Returns the value to use when building filenames for this architecture. 251 private static Architecture getArchitecture(String value) { in getArchitecture() 254 return Architecture.X86_64; in getArchitecture() 257 return Architecture.X86_32; in getArchitecture() 260 return Architecture.ITANIUM_64; in getArchitecture() 263 return Architecture.SPARC_32; in getArchitecture() 266 return Architecture.SPARC_64; in getArchitecture() 269 return Architecture.ARM_32; in getArchitecture() [all …]
|
/external/conscrypt/openjdk/src/main/java/org/conscrypt/ |
D | HostProperties.java | 50 static final Architecture ARCH; 84 enum Architecture { enum in HostProperties 104 * Returns the value to use when building filenames for this architecture. 250 private static Architecture getArchitecture(String value) { in getArchitecture() 253 return Architecture.X86_64; in getArchitecture() 256 return Architecture.X86_32; in getArchitecture() 259 return Architecture.ITANIUM_64; in getArchitecture() 262 return Architecture.SPARC_32; in getArchitecture() 265 return Architecture.SPARC_64; in getArchitecture() 268 return Architecture.ARM_32; in getArchitecture() [all …]
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | ObjectContainer.h | 36 /// more than one architecture or object. 65 /// Gets the architecture given an index. 67 /// Copies the architecture specification for index \a idx. 70 /// The architecture index to extract. 73 /// A architecture object that will be filled in if \a idx is a 74 /// architecture valid index. 107 /// single architecture. ObjectContainer instances that contain more than 108 /// one architecture should override this function and return an appropriate 128 /// Selects an architecture in an object file. 130 /// Object files that contain a single architecture should verify that the [all …]
|
/external/libwebm/common/ |
D | webm_endian.h | 17 // architecture is big endian. Returns big endian value if architecture is 22 // architecture is big endian. Returns little endian value if architecture is 27 // architecture is big endian. Returns big endian value if architecture is 32 // architecture is big endian. Returns little endian value if architecture is
|
/external/llvm-project/openmp/runtime/ |
D | README.txt | 48 * IA-32 architecture 49 * Intel(R) 64 architecture 50 * Intel(R) Many Integrated Core Architecture 51 * ARM* architecture 52 * Aarch64 (64-bit ARM) architecture 53 * IBM(R) Power architecture (big endian) 54 * IBM(R) Power architecture (little endian) 55 * MIPS and MIPS64 architecture 56 * RISCV64 architecture 61 Supported Architectures: IA-32 architecture, Intel(R) 64, and [all …]
|
/external/oss-fuzz/infra/ci/ |
D | build.py | 83 def build_fuzzers(project, engine, sanitizer, architecture): argument 85 with |engine| and |sanitizer| for |architecture|.""" 88 '--architecture', architecture 92 def check_build(project, engine, sanitizer, architecture): argument 94 recently built with |engine| and |sanitizer| for |architecture|.""" 97 '--architecture', architecture 137 is_enabled('ARCHITECTURE', 'architectures', DEFAULT_ARCHITECTURES)) 142 SANITIZER, ENGINE, and ARCHITECTURE.""" 154 architecture = os.getenv('ARCHITECTURE') 157 print(('Specified build: engine: {0}, sanitizer: {1}, architecture: {2} ' [all …]
|
/external/cpuinfo/test/cpuinfo/ |
D | xiaomi-redmi-note-4.log | 6 CPU architecture: 8 15 CPU architecture: 8 24 CPU architecture: 8 33 CPU architecture: 8 42 CPU architecture: 8 51 CPU architecture: 8 60 CPU architecture: 8 69 CPU architecture: 8
|
D | huawei-mate-8.log | 6 CPU architecture: 8 15 CPU architecture: 8 24 CPU architecture: 8 33 CPU architecture: 8 42 CPU architecture: 8 51 CPU architecture: 8 60 CPU architecture: 8 69 CPU architecture: 8
|