/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
H A D | WinCOFFObjectWriter.cpp | 69 COFF::Auxiliary Aux; member 82 AuxiliarySymbols Aux; member in __anon9a7db13a0111::COFFSymbol 320 Symbol->Aux.resize(1); in defineSection() 321 Symbol->Aux[0] = {}; in defineSection() 322 Symbol->Aux[0].AuxType = ATSectionDefinition; in defineSection() 323 Symbol->Aux[0].Aux.SectionDefinition.Selection = MCSec.getSelection(); in defineSection() 396 Sym->Aux.resize(1); in DefineSymbol() 397 memset(&Sym->Aux[0], 0, sizeof(Sym->Aux[0])); in DefineSymbol() 398 Sym->Aux[0].AuxType = ATWeakExternal; in DefineSymbol() 399 Sym->Aux[0].Aux.WeakExternal.TagIndex = 0; in DefineSymbol() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/Targets/ |
H A D | AMDGPU.cpp | 422 void AMDGPUTargetInfo::setAuxTarget(const TargetInfo *Aux) { in setAuxTarget() argument 423 assert(HalfFormat == Aux->HalfFormat); in setAuxTarget() 424 assert(FloatFormat == Aux->FloatFormat); in setAuxTarget() 425 assert(DoubleFormat == Aux->DoubleFormat); in setAuxTarget() 432 copyAuxTarget(Aux); in setAuxTarget() 444 if (Aux->hasFloat128Type()) { in setAuxTarget()
|
H A D | AMDGPU.h | 401 void setAuxTarget(const TargetInfo *Aux) override;
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | ASTImporter.h | 181 ++Aux[D]; in push() 187 --Aux[Nodes.back()]; in pop() 193 auto Pos = Aux.find(Nodes.back()); in hasCycleAtBack() 194 return Pos != Aux.end() && Pos->second > 1; in hasCycleAtBack() 217 llvm::SmallDenseMap<Decl *, int, 32> Aux; variable
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
H A D | WindowsResource.cpp | 822 auto *Aux = reinterpret_cast<coff_aux_section_definition *>(BufferStart + in writeSymbolTable() local 824 Aux->Length = SectionOneSize; in writeSymbolTable() 825 Aux->NumberOfRelocations = Data.size(); in writeSymbolTable() 826 Aux->NumberOfLinenumbers = 0; in writeSymbolTable() 827 Aux->CheckSum = 0; in writeSymbolTable() 828 Aux->NumberLowPart = 0; in writeSymbolTable() 829 Aux->Selection = 0; in writeSymbolTable() 841 Aux = reinterpret_cast<coff_aux_section_definition *>(BufferStart + in writeSymbolTable() 843 Aux->Length = SectionTwoSize; in writeSymbolTable() 844 Aux->NumberOfRelocations = 0; in writeSymbolTable() [all …]
|
H A D | COFFObjectFile.cpp | 1049 const uint8_t *Aux = nullptr; in getSymbolAuxData() local 1054 Aux = reinterpret_cast<const uint8_t *>(Symbol.getRawPtr()) + SymbolSize; in getSymbolAuxData() 1057 uintptr_t Offset = uintptr_t(Aux) - uintptr_t(base()); in getSymbolAuxData() 1067 return makeArrayRef(Aux, Symbol.getNumberOfAuxSymbols() * SymbolSize); in getSymbolAuxData()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
H A D | ELF.h | 619 for (const VernAux &Aux : Dep.AuxV) in loadVersionMap() local 620 InsertEntry(Aux.Other & ELF::VERSYM_VERSION, Aux.Name, false); in loadVersionMap() 896 VerdAux Aux; in getVersionDefinitions() local 897 Aux.Offset = VerdauxBuf - Start; in getVersionDefinitions() 899 Aux.Name = std::string(StrTabOrErr->drop_front(Verdaux->vda_name)); in getVersionDefinitions() 901 Aux.Name = ("<invalid vda_name: " + Twine(Verdaux->vda_name) + ">").str(); in getVersionDefinitions() 902 return Aux; in getVersionDefinitions() 1028 VernAux &Aux = *VN.AuxV.emplace(VN.AuxV.end()); in getVersionDependencies() local 1029 Aux.Hash = Vernaux->vna_hash; in getVersionDependencies() 1030 Aux.Flags = Vernaux->vna_flags; in getVersionDependencies() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
H A D | COFFDumper.cpp | 583 uint8_t AuxSymbolIdx, const T *&Aux) { in getSymbolAuxData() argument 586 Aux = reinterpret_cast<const T*>(AuxData.data()); in getSymbolAuxData() 1526 const coff_aux_function_definition *Aux; in printSymbol() local 1527 if (std::error_code EC = getSymbolAuxData(Obj, Symbol, I, Aux)) in printSymbol() 1531 W.printNumber("TagIndex", Aux->TagIndex); in printSymbol() 1532 W.printNumber("TotalSize", Aux->TotalSize); in printSymbol() 1533 W.printHex("PointerToLineNumber", Aux->PointerToLinenumber); in printSymbol() 1534 W.printHex("PointerToNextFunction", Aux->PointerToNextFunction); in printSymbol() 1537 const coff_aux_weak_external *Aux; in printSymbol() local 1538 if (std::error_code EC = getSymbolAuxData(Obj, Symbol, I, Aux)) in printSymbol() [all …]
|
H A D | ELFDumper.cpp | 4536 for (const VerdAux &Aux : Def.AuxV) in printVersionDefinitionSection() local 4537 OS << format(" 0x%04x: Parent %u: %s\n", Aux.Offset, ++I, in printVersionDefinitionSection() 4538 Aux.Name.data()); in printVersionDefinitionSection() 4562 for (const VernAux &Aux : VN.AuxV) in printVersionDependencySection() local 4563 OS << format(" 0x%04x: Name: %s Flags: %s Version: %u\n", Aux.Offset, in printVersionDependencySection() 4564 Aux.Name.data(), versionFlagToString(Aux.Flags).c_str(), in printVersionDependencySection() 4565 Aux.Other); in printVersionDependencySection() 6635 [](raw_ostream &OS, const VerdAux &Aux) { OS << Aux.Name.c_str(); }); in printVersionDefinitionSection() argument 6659 for (const VernAux &Aux : VN.AuxV) { in printVersionDependencySection() local 6661 W.printNumber("Hash", Aux.Hash); in printVersionDependencySection() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaStmtAttr.cpp | 395 const TargetInfo *Aux = S.Context.getAuxTargetInfo(); in ProcessStmtAttribute() local 398 (S.Context.getLangOpts().SYCLIsDevice && Aux && in ProcessStmtAttribute() 399 A.existsInTarget(*Aux)))) { in ProcessStmtAttribute()
|
H A D | SemaDeclAttr.cpp | 4775 auto *Aux = Context.getAuxTargetInfo(); in CheckCallingConvAttr() local 4793 auto *HostTI = LangOpts.CUDAIsDevice ? Aux : &TI; in CheckCallingConvAttr() 4794 auto *DeviceTI = LangOpts.CUDAIsDevice ? &TI : Aux; in CheckCallingConvAttr()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/ |
H A D | TargetInfo.cpp | 850 void TargetInfo::copyAuxTarget(const TargetInfo *Aux) { in copyAuxTarget() argument 852 auto *Src = static_cast<const TransferrableTargetInfo*>(Aux); in copyAuxTarget()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
H A D | elf2yaml.cpp | 1408 ELFYAML::VernauxEntry Aux; in dumpVerneedSection() local 1409 Aux.Hash = Vernaux->vna_hash; in dumpVerneedSection() 1410 Aux.Flags = Vernaux->vna_flags; in dumpVerneedSection() 1411 Aux.Other = Vernaux->vna_other; in dumpVerneedSection() 1412 Aux.Name = in dumpVerneedSection() 1415 Entry.AuxV.push_back(Aux); in dumpVerneedSection()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
H A D | TargetInfo.h | 1547 virtual void setAuxTarget(const TargetInfo *Aux) {} in setAuxTarget() argument 1554 void copyAuxTarget(const TargetInfo *Aux);
|
/netbsd-src/sys/arch/evbarm/conf/ |
H A D | GEMINI_MASTER | 146 # Aux COM at IT8712
|
H A D | GEMINI_SLAVE | 146 # Aux COM at IT8712
|
H A D | GENERIC64 | 227 bcmaux* at fdt? pass 1 # Broadcom BCM283x Aux Periph Clocks
|
H A D | GENERIC | 267 bcmaux* at fdt? pass 1 # Broadcom BCM283x Aux Periph Clocks
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/ |
H A D | CompilerInstance.cpp | 150 if (auto *Aux = getAuxTarget()) in createTarget() local 151 getTarget().setAuxTarget(Aux); in createTarget()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
H A D | ELFEmitter.cpp | 1860 for (const ELFYAML::VernauxEntry &Aux : VE.AuxV) in finalizeStrings() local 1861 DotDynstr.add(Aux.Name); in finalizeStrings()
|
/netbsd-src/external/bsd/file/dist/magic/magdir/ |
H A D | apple | 309 # ('p' + 1-byte ProDOS File Type + 2-byte ProDOS Aux Type')
|
/netbsd-src/share/terminfo/ |
H A D | terminfo | 14692 # requirements. Some capabilities assume a printer attached to the Aux EIA 15654 # Aux Port Enable ESC,@ 15655 # Aux Port Disable ESC,A 17415 # Aux Interface 0=EIA 1=Loop 17419 # 6 Aux Parity 0=Odd 1=Even 17420 # Aux Parity 0=Off 1=On 17421 # Aux Bits/Char 0=7 1=8
|
/netbsd-src/share/misc/ |
H A D | zipcodes | 21886 49775:Pointe Aux Pins, MI
|