Home
last modified time | relevance | path

Searched refs:TypeOffsets (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Serialization/
H A DModuleFile.h475 const UnderalignedInt64 *TypeOffsets = nullptr; variable
H A DASTWriter.h260 std::vector<serialization::UnderalignedInt64> TypeOffsets; variable
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp2869 if (TypeOffsets.size() == Index) in WriteType()
2870 TypeOffsets.emplace_back(Offset); in WriteType()
2871 else if (TypeOffsets.size() < Index) { in WriteType()
2872 TypeOffsets.resize(Index + 1); in WriteType()
2873 TypeOffsets[Index].setBitOffset(Offset); in WriteType()
2918 RecordData::value_type Record[] = {TYPE_OFFSET, TypeOffsets.size(), in WriteTypeDeclOffsets()
2920 Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record, bytes(TypeOffsets)); in WriteTypeDeclOffsets()
H A DASTReader.cpp3126 F.TypeOffsets = reinterpret_cast<const UnderalignedInt64 *>(Blob.data()); in ReadASTBlock()
6375 M, M->TypeOffsets[Index - M->BaseTypeIndex].getBitOffset() + in TypeCursorForIndex()