Searched refs:RecordSize (Results 1 – 9 of 9) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/DIA/ |
| H A D | DIADataStream.cpp | 30 DWORD RecordSize = 0; in getItemAtIndex() local 31 StreamData->Item(Index, 0, &RecordSize, nullptr); in getItemAtIndex() 32 if (RecordSize == 0) in getItemAtIndex() 35 Record.resize(RecordSize); in getItemAtIndex() 36 if (S_OK != StreamData->Item(Index, RecordSize, &RecordSize, &Record[0])) in getItemAtIndex() 43 DWORD RecordSize = 0; in getNext() local 45 StreamData->Next(1, 0, &RecordSize, nullptr, &CountFetched); in getNext() 46 if (RecordSize == 0) in getNext() 49 Record.resize(RecordSize); in getNext() 51 StreamData->Next(1, RecordSize, &RecordSize, &Record[0], &CountFetched)) in getNext()
|
| /llvm-project-15.0.7/llvm/tools/llvm-pdbutil/ |
| H A D | DumpOutputStyle.h | 40 void update(uint32_t RecordSize) { in update() 42 Size += RecordSize; in update() 48 void update(uint32_t Kind, uint32_t RecordSize) { in update() 49 Totals.update(RecordSize); in update() 50 auto Iter = Individual.try_emplace(Kind, 1, RecordSize); in update() 52 Iter.first->second.update(RecordSize); in update()
|
| H A D | DumpOutputStyle.cpp | 689 uint32_t RecordSize = 0; in dumpUdtStats() local 697 RecordSize = T->length(); in dumpUdtStats() 701 UdtTargetStats.update(Kind, RecordSize); in dumpUdtStats() 712 NamespacedStats[Scope].update(RecordSize); in dumpUdtStats()
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | GlobalTypeTableBuilder.h | 71 TypeIndex insertRecordAs(GloballyHashedType Hash, size_t RecordSize, in insertRecordAs() argument 73 assert(RecordSize < UINT32_MAX && "Record too big"); in insertRecordAs() 74 assert(RecordSize % 4 == 0 && in insertRecordAs() 82 uint8_t *Stable = RecordStorage.Allocate<uint8_t>(RecordSize); in insertRecordAs() 83 MutableArrayRef<uint8_t> Data(Stable, RecordSize); in insertRecordAs()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-doc/ |
| H A D | BitcodeWriter.h | 36 static constexpr unsigned RecordSize = 32U; member 214 SmallVector<uint32_t, BitCodeConstants::RecordSize> Record;
|
| H A D | BitcodeWriter.cpp | 192 assert((Init.second.Name.size() + 1) <= BitCodeConstants::RecordSize); in __anond6a402610202()
|
| /llvm-project-15.0.7/llvm/include/llvm/Object/ |
| H A D | StackMapParser.h | 283 unsigned RecordSize = in getSizeInBytes() local 285 return (RecordSize + 7) & ~0x7; in getSizeInBytes()
|
| /llvm-project-15.0.7/llvm/lib/MC/ |
| H A D | MCCodeView.cpp | 660 size_t RecordSize = FixedSizePortion.size() + in encodeDefRange() local 663 LEWriter.write<uint16_t>(RecordSize); in encodeDefRange()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGRecordLayoutBuilder.cpp | 597 const CharUnits RecordSize = Layout.getSize(); in computeVolatileBitfields() local 598 if (End >= RecordSize) in computeVolatileBitfields()
|