Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleFile.h479 const UnalignedUInt64 *TypeOffsets = nullptr; variable
H A DASTWriter.h281 std::vector<serialization::UnalignedUInt64> TypeOffsets; variable
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp3290 if (TypeOffsets.size() == Index) in WriteType()
3291 TypeOffsets.emplace_back(Offset); in WriteType()
3292 else if (TypeOffsets.size() < Index) { in WriteType()
3293 TypeOffsets.resize(Index + 1); in WriteType()
3294 TypeOffsets[Index].set(Offset); in WriteType()
3365 RecordData::value_type Record[] = {TYPE_OFFSET, TypeOffsets.size()}; in WriteTypeDeclOffsets()
3366 Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record, bytes(TypeOffsets)); in WriteTypeDeclOffsets()
H A DASTReader.cpp3397 F.TypeOffsets = reinterpret_cast<const UnalignedUInt64 *>(Blob.data()); in ReadASTBlock()
6675 return RecordLocation(M, M->TypeOffsets[Index - M->BaseTypeIndex].get() + in TypeCursorForIndex()