Home
last modified time | relevance | path

Searched refs:RecordSize (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/
DDIADataStream.cpp30 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()
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/
Dhorizontal_device_metrics_table.cc33 int32_t HorizontalDeviceMetricsTable::RecordSize() { in RecordSize() function in sfntly::HorizontalDeviceMetricsTable
44 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() + in PixelSize()
55 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() + in MaxWidth()
68 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() + in Width()
Dhorizontal_device_metrics_table.h52 int32_t RecordSize();
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/
Dhorizontal_device_metrics_table.cc33 int32_t HorizontalDeviceMetricsTable::RecordSize() { in RecordSize() function in sfntly::HorizontalDeviceMetricsTable
44 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() + in PixelSize()
55 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() + in MaxWidth()
68 return data_->ReadUByte(Offset::kRecords + record_index * RecordSize() + in Width()
Dhorizontal_device_metrics_table.h52 int32_t RecordSize();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DGlobalTypeTableBuilder.h72 TypeIndex insertRecordAs(GloballyHashedType Hash, size_t RecordSize, in insertRecordAs() argument
78 uint8_t *Stable = RecordStorage.Allocate<uint8_t>(RecordSize); in insertRecordAs()
79 MutableArrayRef<uint8_t> Data(Stable, RecordSize); in insertRecordAs()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/
DBitcodeMunge.h34 SubzeroBitcodeMunger(const uint64_t Records[], size_t RecordSize, in SubzeroBitcodeMunger() argument
36 : llvm::NaClBitcodeMunger(Records, RecordSize, RecordTerminator) { in SubzeroBitcodeMunger()
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
Dhdmx_test.cc45 EXPECT_EQ(hdmx_table->RecordSize(), HDMX_RECORD_SIZE); in TestReadingHdmxTable()
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/
Dhdmx_test.cc45 EXPECT_EQ(hdmx_table->RecordSize(), HDMX_RECORD_SIZE); in TestReadingHdmxTable()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DStackMapParser.h280 unsigned RecordSize = in getSizeInBytes() local
282 return (RecordSize + 7) & ~0x7; in getSizeInBytes()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCCodeView.cpp662 size_t RecordSize = FixedSizePortion.size() + in encodeDefRange() local
665 LEWriter.write<uint16_t>(RecordSize); in encodeDefRange()