Home
last modified time | relevance | path

Searched refs:NumSyms (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DArchiveWriter.cpp385 uint64_t NumSyms, uint64_t OffsetSize, in computeSymbolTableSize() argument
391 Size += NumSyms * OffsetSize * 2; // Table in computeSymbolTableSize()
393 Size += NumSyms * OffsetSize; // Table in computeSymbolTableSize()
461 uint64_t StringMemberSize, uint64_t NumSyms, in computeHeadersSize() argument
465 computeSymbolTableSize(Kind, NumSyms, OffsetSize, SymNamesSize); in computeHeadersSize()
598 unsigned NumSyms, uint64_t PrevMemberOffset = 0, in writeSymbolTable() argument
608 uint64_t Size = computeSymbolTableSize(Kind, NumSyms, OffsetSize, in writeSymbolTable()
614 printNBits(Out, Kind, NumSyms * 2 * OffsetSize); in writeSymbolTable()
616 printNBits(Out, Kind, NumSyms); in writeSymbolTable()
1074 uint64_t NumSyms = 0; in writeArchiveToStream() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.cpp479 const size_t NumSyms = Syms.size(); in finish() local
486 {&Sec, {NumSyms, S.emitMappingSymbol(Sec.isText() ? "$x" : "$d")}}); in finish()
488 if (Syms.size() != NumSyms) { in finish()
490 Syms.truncate(NumSyms); in finish()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DOrcV2CBindings.cpp427 size_t NumSyms, LLVMOrcSymbolStringPoolEntryRef InitSym, in LLVMOrcCreateCustomMaterializationUnit() argument
432 for (size_t I = 0; I != NumSyms; ++I) in LLVMOrcCreateCustomMaterializationUnit()
556 LLVMOrcCSymbolFlagsMapPairs Syms, size_t NumSyms) { in LLVMOrcMaterializationResponsibilityDefineMaterializing() argument
558 for (size_t I = 0; I != NumSyms; ++I) in LLVMOrcMaterializationResponsibilityDefineMaterializing()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DOrc.h674 size_t NumSyms, LLVMOrcSymbolStringPoolEntryRef InitSym,
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp1095 unsigned NumSyms = Module->getSymbolCount(); in main() local
1096 for (unsigned I = 0; I < NumSyms; ++I) { in main()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp2727 size_t NumSyms = DynSymTable.size(); in getGnuHashTableChains() local
2728 if (!NumSyms) in getGnuHashTableChains()
2731 if (GnuHashTable->symndx < NumSyms) in getGnuHashTableChains()
2732 return GnuHashTable->values(NumSyms); in getGnuHashTableChains()
2746 Twine(NumSyms) + ")"); in getGnuHashTableChains()