Searched refs:RecordSize (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/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()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | DumpOutputStyle.h | 37 void update(uint32_t RecordSize) { 39 Size += RecordSize; in update() 45 void update(uint32_t Kind, uint32_t RecordSize) { 46 Totals.update(RecordSize); 47 auto Iter = Individual.try_emplace(Kind, 1, RecordSize); in update() 49 Iter.first->second.update(RecordSize); in update()
|
H A D | DumpOutputStyle.cpp | 691 uint32_t RecordSize = 0; in dumpUdtStats() local 699 RecordSize = T->length(); in dumpUdtStats() 703 UdtTargetStats.update(Kind, RecordSize); in dumpUdtStats() 714 NamespacedStats[Scope].update(RecordSize); in dumpUdtStats()
|
/freebsd/contrib/llvm-project/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()
|
/freebsd/contrib/ntp/scripts/monitoring/ |
H A D | ntploopwatch | 62 $RecordSize = 48; # usually a line fits into 42 bytes 692 ($st_size > 4*$RecordSize) ? $st_size - 4*$RecordSize : 0, 849 $fpos[$[+2] = ($fpos[$[+2] <= 2 * $RecordSize) 850 ? 0 : $fpos[$[+2] - 2 * $RecordSize; 889 $s = int($s/$RecordSize); 895 $fpos[$[+2] = ($c >=-2) ? 0 : (-$c - 2) * $RecordSize; 909 $s = int($F_size{$_}/$RecordSize); 914 $fpos[$[+2] = ($c>-2) ? 0 : (-$c - 2) * $RecordSize; 954 $s = int($F_size{$_}/$RecordSize); 959 $fpos[$[+2] = ($c>-2) ? 0 : (-$c - 2) * $RecordSize; [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | StackMapParser.h | 282 unsigned RecordSize = in getSizeInBytes() 284 return (RecordSize + 7) & ~0x7; in getSizeInBytes() 283 unsigned RecordSize = getSizeInBytes() local
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCCodeView.cpp | 673 size_t RecordSize = FixedSizePortion.size() + in encodeDefRange() local 676 LEWriter.write<uint16_t>(RecordSize); in encodeDefRange()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGRecordLayoutBuilder.cpp | 808 const CharUnits RecordSize = Layout.getSize(); in computeVolatileBitfields() local 809 if (End >= RecordSize) in computeVolatileBitfields()
|