Home
last modified time | relevance | path

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

/external/llvm/lib/DebugInfo/PDB/DIA/
DDIADataStream.cpp39 DWORD RecordSize = 0; in getItemAtIndex() local
40 StreamData->Item(Index, 0, &RecordSize, nullptr); in getItemAtIndex()
41 if (RecordSize == 0) in getItemAtIndex()
44 Record.resize(RecordSize); in getItemAtIndex()
45 if (S_OK != StreamData->Item(Index, RecordSize, &RecordSize, &Record[0])) in getItemAtIndex()
52 DWORD RecordSize = 0; in getNext() local
54 StreamData->Next(1, 0, &RecordSize, nullptr, &CountFetched); in getNext()
55 if (RecordSize == 0) in getNext()
58 Record.resize(RecordSize); in getNext()
60 StreamData->Next(1, RecordSize, &RecordSize, &Record[0], &CountFetched)) in getNext()
/external/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();
/external/sfntly/cpp/src/test/
Dhdmx_test.cc45 EXPECT_EQ(hdmx_table->RecordSize(), HDMX_RECORD_SIZE); in TestReadingHdmxTable()
/external/clang/lib/CodeGen/
DCGExprConstant.cpp66 void AppendTailPadding(CharUnits RecordSize);
313 void ConstStructBuilder::AppendTailPadding(CharUnits RecordSize) { in AppendTailPadding() argument
314 assert(NextFieldOffsetInChars <= RecordSize && in AppendTailPadding()
317 AppendPadding(RecordSize - NextFieldOffsetInChars); in AppendTailPadding()