Home
last modified time | relevance | path

Searched refs:NameCount (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp374 W.printNumber("Name count", NameCount); in dump()
396 NameCount = AS.getU32(C); in extract()
504 Offset += Hdr.NameCount * 4; in extract()
506 Offset += Hdr.NameCount * SectionOffsetSize; in extract()
508 Offset += Hdr.NameCount * SectionOffsetSize; in extract()
638 assert(0 < Index && Index <= Hdr.NameCount); in getNameTableEntry()
661 assert(0 < Index && Index <= Hdr.NameCount); in getHashArrayEntry()
741 if (Index > Hdr.NameCount) { in dumpBucket()
746 for (; Index <= Hdr.NameCount; ++Index) { in dumpBucket()
818 for (; Index <= Hdr.NameCount; ++Index) { in findEntryOffsetInCurrentIndex()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBStringTable.cpp23 uint32_t PDBStringTable::getNameCount() const { return NameCount; } in getNameCount()
77 if (auto EC = Reader.readInteger(NameCount)) in readEpilogue()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBStringTable.h57 uint32_t NameCount = 0; variable
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAccelTable.cpp199 uint32_t NameCount; member
204 Header(uint32_t CompUnitCount, uint32_t BucketCount, uint32_t NameCount) in Header()
206 NameCount(NameCount) {} in Header()
382 Asm->emitInt32(NameCount); in emit()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h246 uint32_t NameCount; member
451 uint32_t getNameCount() const { return Hdr.NameCount; } in getNameCount()