Home
last modified time | relevance | path

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

/external/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()
/external/llvm/lib/DebugInfo/PDB/DIA/
DDIADataStream.cpp41 DWORD RecordSize = 0; in getItemAtIndex() local
42 StreamData->Item(Index, 0, &RecordSize, nullptr); in getItemAtIndex()
43 if (RecordSize == 0) in getItemAtIndex()
46 Record.resize(RecordSize); in getItemAtIndex()
47 if (S_OK != StreamData->Item(Index, RecordSize, &RecordSize, &Record[0])) in getItemAtIndex()
54 DWORD RecordSize = 0; in getNext() local
56 StreamData->Next(1, 0, &RecordSize, nullptr, &CountFetched); in getNext()
57 if (RecordSize == 0) in getNext()
60 Record.resize(RecordSize); in getNext()
62 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/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()
/external/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()
/external/bcc/src/cc/
Djson_map_decl_visitor.cc141 CharUnits RecordSize = Layout.getSize(); in VisitRecordDecl() local
142 if (RecordSize > Offset) { in VisitRecordDecl()
144 + to_string((RecordSize - Offset).getQuantity()) + "]], "; in VisitRecordDecl()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DStackMapParser.h280 unsigned RecordSize = in getSizeInBytes() local
282 return (RecordSize + 7) & ~0x7; in getSizeInBytes()
/external/llvm/include/llvm/Object/
DStackMapParser.h273 unsigned RecordSize = in getSizeInBytes() local
275 return (RecordSize + 7) & ~0x7; in getSizeInBytes()
/external/sfntly/cpp/src/test/
Dhdmx_test.cc45 EXPECT_EQ(hdmx_table->RecordSize(), HDMX_RECORD_SIZE); in TestReadingHdmxTable()
/external/tensorflow/tensorflow/core/graph/
Dcostmodel.cc183 void CostModel::RecordSize(const Node* node, int slot, Bytes bytes) { in RecordSize() function in tensorflow::CostModel
422 cost_model->RecordSize(n, output, Bytes(1)); in AddNodesToCostModel()
437 cost_model->RecordSize(src, e->src_output(), size); in AssignSizes()
Dcostmodel.h101 void RecordSize(const Node* node, int output_slot, Bytes bytes);
/external/llvm/lib/MC/
DMCCodeView.cpp410 size_t RecordSize = in encodeDefRange() local
413 support::endian::Writer<support::little>(OS).write<uint16_t>(RecordSize); in encodeDefRange()
/external/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()
/external/cronet/testing/libfuzzer/proto/
Dskia_image_filter_proto_converter.h284 void RecordSize();
Dskia_image_filter_proto_converter.cc742 void Converter::RecordSize() { in RecordSize() function in skia_image_filter_proto_converter::Converter
1272 RecordSize(); in Visit()
1911 RecordSize(); in PreVisitFlattenable()
2235 RecordSize(); in Visit()
/external/clang/lib/CodeGen/
DCGExprConstant.cpp71 void AppendTailPadding(CharUnits RecordSize);
320 void ConstStructBuilder::AppendTailPadding(CharUnits RecordSize) { in AppendTailPadding() argument
321 assert(NextFieldOffsetInChars <= RecordSize && in AppendTailPadding()
324 AppendPadding(RecordSize - NextFieldOffsetInChars); in AppendTailPadding()