Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/Serialization/
H A DModuleFile.h490 const UnderalignedInt64 *TypeOffsets = nullptr; variable
H A DASTWriter.h248 std::vector<serialization::UnderalignedInt64> TypeOffsets; variable
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriter.cpp3076 if (TypeOffsets.size() == Index) in WriteType()
3077 TypeOffsets.emplace_back(Offset); in WriteType()
3078 else if (TypeOffsets.size() < Index) { in WriteType()
3079 TypeOffsets.resize(Index + 1); in WriteType()
3080 TypeOffsets[Index].setBitOffset(Offset); in WriteType()
3125 RecordData::value_type Record[] = {TYPE_OFFSET, TypeOffsets.size(), in WriteTypeDeclOffsets()
3127 Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record, bytes(TypeOffsets)); in WriteTypeDeclOffsets()
H A DASTReader.cpp3158 F.TypeOffsets = reinterpret_cast<const UnderalignedInt64 *>(Blob.data()); in ReadASTBlock()
6473 M, M->TypeOffsets[Index - M->BaseTypeIndex].getBitOffset() + in TypeCursorForIndex()