HomeSort by: relevance | last modified time | path
    Searched defs:Aux (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTImporter.h 181 ++Aux[D];
187 --Aux[Nodes.back()];
193 auto Pos = Aux.find(Nodes.back());
194 return Pos != Aux.end() && Pos->second > 1;
217 llvm::SmallDenseMap<Decl *, int, 32> Aux;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmtAttr.cpp 395 const TargetInfo *Aux = S.Context.getAuxTargetInfo();
398 (S.Context.getLangOpts().SYCLIsDevice && Aux &&
399 A.existsInTarget(*Aux)))) {
SemaDeclAttr.cpp 4775 auto *Aux = Context.getAuxTargetInfo();
4793 auto *HostTI = LangOpts.CUDAIsDevice ? Aux : &TI;
4794 auto *DeviceTI = LangOpts.CUDAIsDevice ? &TI : Aux;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
ELF.h 619 for (const VernAux &Aux : Dep.AuxV)
620 InsertEntry(Aux.Other & ELF::VERSYM_VERSION, Aux.Name, false);
896 VerdAux Aux;
897 Aux.Offset = VerdauxBuf - Start;
899 Aux.Name = std::string(StrTabOrErr->drop_front(Verdaux->vda_name));
901 Aux.Name = ("<invalid vda_name: " + Twine(Verdaux->vda_name) + ">").str();
902 return Aux;
1028 VernAux &Aux = *VN.AuxV.emplace(VN.AuxV.end());
1029 Aux.Hash = Vernaux->vna_hash
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
WinCOFFObjectWriter.cpp 69 COFF::Auxiliary Aux;
82 AuxiliarySymbols Aux;
320 Symbol->Aux.resize(1);
321 Symbol->Aux[0] = {};
322 Symbol->Aux[0].AuxType = ATSectionDefinition;
323 Symbol->Aux[0].Aux.SectionDefinition.Selection = MCSec.getSelection();
396 Sym->Aux.resize(1);
397 memset(&Sym->Aux[0], 0, sizeof(Sym->Aux[0]))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WindowsResource.cpp 665 FileSize += 4 * COFF::Symbol16Size; // symbol + aux for each section.
813 // Now write the .rsrc1 symbol + aux.
822 auto *Aux = reinterpret_cast<coff_aux_section_definition *>(BufferStart +
824 Aux->Length = SectionOneSize;
825 Aux->NumberOfRelocations = Data.size();
826 Aux->NumberOfLinenumbers = 0;
827 Aux->CheckSum = 0;
828 Aux->NumberLowPart = 0;
829 Aux->Selection = 0;
832 // Now write the .rsrc2 symbol + aux
    [all...]
COFFObjectFile.cpp 1049 const uint8_t *Aux = nullptr;
1053 // AUX data comes immediately after the symbol in COFF
1054 Aux = reinterpret_cast<const uint8_t *>(Symbol.getRawPtr()) + SymbolSize;
1056 // Verify that the Aux symbol points to a valid entry in the symbol table.
1057 uintptr_t Offset = uintptr_t(Aux) - uintptr_t(base());
1061 report_fatal_error("Aux Symbol data was outside of symbol table.");
1064 "Aux Symbol data did not point to the beginning of a symbol");
1067 return makeArrayRef(Aux, Symbol.getNumberOfAuxSymbols() * SymbolSize);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
COFFDumper.cpp 583 uint8_t AuxSymbolIdx, const T *&Aux) {
586 Aux = reinterpret_cast<const T*>(AuxData.data());
1526 const coff_aux_function_definition *Aux;
1527 if (std::error_code EC = getSymbolAuxData(Obj, Symbol, I, Aux))
1531 W.printNumber("TagIndex", Aux->TagIndex);
1532 W.printNumber("TotalSize", Aux->TotalSize);
1533 W.printHex("PointerToLineNumber", Aux->PointerToLinenumber);
1534 W.printHex("PointerToNextFunction", Aux->PointerToNextFunction);
1537 const coff_aux_weak_external *Aux;
1538 if (std::error_code EC = getSymbolAuxData(Obj, Symbol, I, Aux))
    [all...]

Completed in 52 milliseconds