Searched refs:RecordSize (Results 1 – 8 of 8) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| H A D | DumpOutputStyle.h | 46 void update(uint32_t RecordSize) { in update() 48 Size += RecordSize; in update() 54 void update(uint32_t Kind, uint32_t RecordSize) { in update() 55 Totals.update(RecordSize); in update() 56 auto Iter = Individual.try_emplace(Kind, 1, RecordSize); in update() 58 Iter.first->second.update(RecordSize); in update()
|
| H A D | DumpOutputStyle.cpp | 790 uint32_t RecordSize = 0; in dumpUdtStats() local 798 RecordSize = T->length(); in dumpUdtStats() 802 UdtTargetStats.update(Kind, RecordSize); in dumpUdtStats() 813 NamespacedStats[Scope].update(RecordSize); in dumpUdtStats()
|
| /netbsd-src/external/apache2/llvm/dist/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()
|
| /netbsd-src/external/bsd/ntp/dist/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 …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| H A D | StackMapParser.h | 283 unsigned RecordSize = in getSizeInBytes() local 285 return (RecordSize + 7) & ~0x7; in getSizeInBytes()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
| H A D | MCCodeView.cpp | 659 size_t RecordSize = FixedSizePortion.size() + in encodeDefRange() local 662 LEWriter.write<uint16_t>(RecordSize); in encodeDefRange()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGRecordLayoutBuilder.cpp | 597 const CharUnits RecordSize = Layout.getSize(); in computeVolatileBitfields() local 598 if (End >= RecordSize) in computeVolatileBitfields()
|