HomeSort by relevance Sort by last modified time
    Searched refs:Arch (Results 76 - 100 of 397) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
decodesym.go 48 func decodeInuxi(arch *sys.Arch, p []byte, sz int) uint64 {
51 return uint64(arch.ByteOrder.Uint16(p))
53 return uint64(arch.ByteOrder.Uint32(p))
55 return arch.ByteOrder.Uint64(p)
77 func decodetypeSize(arch *sys.Arch, s *Symbol) int64 {
78 return int64(decodeInuxi(arch, s.P, SysArch.PtrSize)) // 0x8 / 0x10
82 func decodetypePtrdata(arch *sys.Arch, s *Symbol) int64
    [all...]
  /bionic/tools/versioner/src/
CompilationType.h 24 #include "Arch.h"
27 Arch arch; member in struct:CompilationType
33 return std::tie(arch, api_level, file_offset_bits);
51 int32_t arch : 3; member in struct:std::hash::__anon1393
56 packed.arch = static_cast<int32_t>(type.arch);
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
InfParserLite.py 87 # @param ArchList: A list for arch for this section
92 Arch = ArchList[Index]
94 if Arch == '':
95 Arch = TAB_ARCH_COMMON
100 self.TblInf.Insert(MODEL_META_DATA_HEADER, Name, Value, Third, '', '', Arch, -1, self.FileID, Item[1], -1, Item[1], -1, 0)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
InfPackagesObject.py 71 def SetPackages(self, PackageData, Arch = None):
74 for ArchItem in Arch:
76 # Validate Arch
185 def GetPackages(self, Arch = None):
186 if Arch == None:
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfDefineSectionParser.py 51 for Arch in ArchList:
52 if IsValidArch(Arch):
53 NewArchList.append(Arch)
92 # The first time encountered VALIDATE_ARCHITECHERS will be considered as support arch list.
196 InfSectionObject.SetDefines(_ContentList, Arch=ArchList)
InfGuidPpiProtocolSectionParser.py 115 if not InfSectionObject.SetGuid(GuidList, Arch=ArchList):
200 if not InfSectionObject.SetPpi(PpiList, Arch=ArchList):
235 Arch = Item[3]
237 if not IsValidArch(Arch):
241 ST.ERR_INF_PARSER_DEFINE_FROMAT_INVALID % (Arch),
246 if (UserId, IdString, Arch) not in IdContentList:
264 IdContentList.append((UserId, IdString, Arch))
268 # of UserId, IdString and Arch values.
270 # section header, provided the IdString or Arch values are
272 # one section header if the UserId or Arch values are
    [all...]
  /external/llvm/test/MC/AArch64/
arm64-small-data-fixups.s 14 ; CHECK: Arch: aarch64
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
MetaFileTable.py 102 # @param Scope1: Arch of a Inf item
133 # @param Arch: The Arch attribute of Record
138 def Query(self, Model, Arch=None, Platform=None, BelongsToItem=None):
142 if Arch != None and Arch != 'COMMON':
143 ConditionString += " AND (Scope1='%s' OR Scope1='COMMON')" % Arch
184 # @param Scope1: Arch of a Dec item
215 # @param Arch: The Arch attribute of Record
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
EDDisassembler.cpp 44 Triple::ArchType Arch;
59 /// @arg arch - The Triple::ArchType for the desired architecture
60 static const char *tripleFromArch(Triple::ArchType arch) {
64 if (arch == triplemap[infoIndex].Arch)
75 /// @arg arch - The target architecture
77 static int getLLVMSyntaxVariant(Triple::ArchType arch,
84 if (arch == Triple::x86 || arch == Triple::x86_64)
89 if (arch == Triple::x86 || arch == Triple::x86_64
    [all...]
EDOperand.cpp 33 if (Disassembler.Key.Arch == Triple::x86 ||
34 Disassembler.Key.Arch == Triple::x86_64) {
57 else if (Disassembler.Key.Arch == Triple::arm ||
58 Disassembler.Key.Arch == Triple::thumb) {
129 switch (Disassembler.Key.Arch) {
171 if (segmentReg != 0 && Disassembler.Key.Arch == Triple::x86_64) {
  /external/llvm/tools/yaml2obj/
yaml2macho.cpp 479 FatArchType constructFatArch(MachOYAML::FatArch &Arch) {
481 FatArch.cputype = Arch.cputype;
482 FatArch.cpusubtype = Arch.cpusubtype;
483 FatArch.offset = Arch.offset;
484 FatArch.size = Arch.size;
485 FatArch.align = Arch.align;
493 void writeFatArch<MachO::fat_arch>(MachOYAML::FatArch &Arch, raw_ostream &OS) {
494 auto FatArch = constructFatArch<MachO::fat_arch>(Arch);
501 void writeFatArch<MachO::fat_arch_64>(MachOYAML::FatArch &Arch,
503 auto FatArch = constructFatArch<MachO::fat_arch_64>(Arch);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
MigrationUtilities.py 364 # @param Arch CPU architecture: Ia32, X64, Ipf, ARM, AARCH64, Ebc or Common.
367 def AddToSection(Section, Arch, Item):
368 SectionArch = Section.get(Arch, [])
371 Section[Arch] = SectionArch
397 for Arch in SupportedArches:
398 if Arch.upper() in Arches:
399 AddToSection(SectionDict, Arch, Item)
402 for Arch in SupportedArches:
403 SectionArch = "\n".join(SectionDict.get(Arch, []))
405 Section += "[%s.%s]\n%s\n" % (SectionName, Arch, SectionArch)
    [all...]
  /external/llvm/tools/dsymutil/
MachODebugMapParser.cpp 83 void dumpSymTabHeader(raw_ostream &OS, StringRef Arch);
197 void MachODebugMapParser::dumpSymTabHeader(raw_ostream &OS, StringRef Arch) {
200 OS << "Symbol table for: '" << BinaryPath << "' (" << Arch.data() << ")\n";
287 static bool shouldLinkArch(SmallVectorImpl<StringRef> &Archs, StringRef Arch) {
293 if (Arch.startswith("arm") && Arch != "arm64" &&
297 SmallString<16> ArchName = Arch;
298 if (Arch.startswith("thumb"))
299 ArchName = ("arm" + Arch.substr(5)).str();
dsymutil.cpp 73 "arch",
284 for (const auto &Arch : ArchFlags)
285 if (Arch != "*" && Arch != "all" &&
286 !llvm::object::MachOObjectFile::isValidArch(Arch)) {
287 llvm::errs() << "error: Unsupported cpu architecture: '" << Arch << "'\n";
292 // Dump the symbol table for each input file and requested arch
325 llvm::errs() << "warning: no debug symbols in executable (-arch "
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/arch/
arch.go 5 package arch package
27 // Arch wraps the link architecture object with more architecture-specific information.
28 type Arch struct {
50 func Set(GOARCH string) *Arch {
98 func archX86(linkArch *obj.LinkArch) *Arch {
174 return &Arch{
184 func archArm() *Arch {
225 return &Arch{
235 func archArm64() *Arch {
309 return &Arch{
    [all...]
  /prebuilts/go/linux-x86/src/cmd/asm/internal/arch/
arch.go 5 package arch package
27 // Arch wraps the link architecture object with more architecture-specific information.
28 type Arch struct {
50 func Set(GOARCH string) *Arch {
98 func archX86(linkArch *obj.LinkArch) *Arch {
174 return &Arch{
184 func archArm() *Arch {
225 return &Arch{
235 func archArm64() *Arch {
309 return &Arch{
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
DepexSection.py 41 for Arch in GenFdsGlobalVariable.ArchList:
43 Arch,
50 Arch,
Section.py 131 if File.Arch == "COMMON" or FfsInf.CurrentArch == File.Arch:
142 GenFdsGlobalVariable.InfLogger ("\nCurrent ARCH \'%s\' of File %s is not in the Support Arch Scope of %s specified by INF %s in FDF" %(FfsInf.CurrentArch, File.File, File.Arch, FfsInf.InfFileName))
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/
Build_IFWI.bat 25 set Arch=X64
61 set Arch=X64
68 set Arch=IA32
131 set BIOS_Name=%BOARD_ID%_%Arch%_%BUILD_TYPE%_%VERSION_MAJOR%_%VERSION_MINOR%.ROM
162 echo /x64 Set Arch to X64 (default: X64)
163 echo /IA32 Set Arch to IA32 (default: X64)
  /external/swiftshader/third_party/subzero/src/
IceTypes.h 56 const char *targetArchString(TargetArch Arch);
58 inline Ostream &operator<<(Ostream &Stream, TargetArch Arch) {
59 return Stream << targetArchString(Arch);
  /external/llvm/include/llvm/ADT/
Triple.h 206 /// The parsed arch type.
207 ArchType Arch;
230 Triple() : Data(), Arch(), Vendor(), OS(), Environment(), ObjectFormat() {}
238 return Arch == Other.Arch && SubArch == Other.SubArch &&
262 ArchType getArch() const { return Arch; }
675 /// Get the (LLVM) name of the minimum ARM CPU for the arch we are targeting.
677 /// \param Arch the architecture name (e.g., "armv7s"). If it is an empty
678 /// string then the triple's arch name is used.
679 StringRef getARMCPUForArch(StringRef Arch = StringRef()) const
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Triple.h 214 /// The parsed arch type.
215 ArchType Arch;
238 Triple() : Data(), Arch(), Vendor(), OS(), Environment(), ObjectFormat() {}
246 return Arch == Other.Arch && SubArch == Other.SubArch &&
270 ArchType getArch() const { return Arch; }
692 /// Get the (LLVM) name of the minimum ARM CPU for the arch we are targeting.
694 /// \param Arch the architecture name (e.g., "armv7s"). If it is an empty
695 /// string then the triple's arch name is used.
696 StringRef getARMCPUForArch(StringRef Arch = StringRef()) const
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
Triple.h 216 /// The parsed arch type.
217 ArchType Arch;
240 Triple() : Data(), Arch(), Vendor(), OS(), Environment(), ObjectFormat() {}
248 return Arch == Other.Arch && SubArch == Other.SubArch &&
272 ArchType getArch() const { return Arch; }
713 /// Get the (LLVM) name of the minimum ARM CPU for the arch we are targeting.
715 /// \param Arch the architecture name (e.g., "armv7s"). If it is an empty
716 /// string then the triple's arch name is used.
717 StringRef getARMCPUForArch(StringRef Arch = StringRef()) const
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
Triple.h 216 /// The parsed arch type.
217 ArchType Arch;
240 Triple() : Data(), Arch(), Vendor(), OS(), Environment(), ObjectFormat() {}
248 return Arch == Other.Arch && SubArch == Other.SubArch &&
272 ArchType getArch() const { return Arch; }
713 /// Get the (LLVM) name of the minimum ARM CPU for the arch we are targeting.
715 /// \param Arch the architecture name (e.g., "armv7s"). If it is an empty
716 /// string then the triple's arch name is used.
717 StringRef getARMCPUForArch(StringRef Arch = StringRef()) const
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
Triple.h 216 /// The parsed arch type.
217 ArchType Arch;
240 Triple() : Data(), Arch(), Vendor(), OS(), Environment(), ObjectFormat() {}
248 return Arch == Other.Arch && SubArch == Other.SubArch &&
272 ArchType getArch() const { return Arch; }
713 /// Get the (LLVM) name of the minimum ARM CPU for the arch we are targeting.
715 /// \param Arch the architecture name (e.g., "armv7s"). If it is an empty
716 /// string then the triple's arch name is used.
717 StringRef getARMCPUForArch(StringRef Arch = StringRef()) const
    [all...]

Completed in 836 milliseconds

1 2 34 5 6 7 8 91011>>