Home
last modified time | relevance | path

Searched refs:symbolIndex (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/lld/ELF/
DInputFiles.h214 Symbol &getSymbol(uint32_t symbolIndex) const { in getSymbol() argument
215 if (symbolIndex >= this->symbols.size()) in getSymbol()
217 return *this->symbols[symbolIndex]; in getSymbol()
/external/llvm-project/lld/lib/ReaderWriter/MachO/
DMachONormalizedFileToAtoms.cpp552 auto atomBySymbol = [&] (uint32_t symbolIndex, const lld::Atom **result) in convertRelocs()
560 assert(symbolIndex >= numStabs && "Searched for stab via atomBySymbol?"); in convertRelocs()
561 if (symbolIndex < numStabs+numLocal) { in convertRelocs()
562 sym = &normalizedFile.localSymbols[symbolIndex-numStabs]; in convertRelocs()
563 } else if (symbolIndex < numStabs+numLocal+numGlobal) { in convertRelocs()
564 sym = &normalizedFile.globalSymbols[symbolIndex-numStabs-numLocal]; in convertRelocs()
565 } else if (symbolIndex < numStabs+numLocal+numGlobal+numUndef) { in convertRelocs()
566 sym = &normalizedFile.undefinedSymbols[symbolIndex-numStabs-numLocal- in convertRelocs()
570 + Twine(symbolIndex) + ") out of range"); in convertRelocs()
DArchHandler.h129 typedef std::function<llvm::Error (uint32_t symbolIndex,
/external/icu/libandroidicu/include/unicode/
Dudat.h1564 int32_t symbolIndex,
1603 int32_t symbolIndex,
/external/icu/icu4c/source/i18n/unicode/
Dudat.h1564 int32_t symbolIndex,
1603 int32_t symbolIndex,
/external/icu/libicu/cts_headers/unicode/
Dudat.h1564 int32_t symbolIndex,
1603 int32_t symbolIndex,
/external/llvm-project/lld/COFF/
DInputFiles.h157 Symbol *getSymbol(uint32_t symbolIndex) { in getSymbol() argument
158 return symbols[symbolIndex]; in getSymbol()
/external/python/cpython2/Mac/Modules/cg/
DCFMLateImport.c701 UInt32 symbolIndex, in LookupSymbol() argument
727 MoreAssertQ(symbolIndex < loaderSection->totalImportedSymbolCount); in LookupSymbol()
737 symbolStringOffset = importSymbolTable[symbolIndex]; in LookupSymbol()