Searched refs:BaseSize (Results 1 - 10 of 10) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DRecord.cpp16 unsigned VirtualSize, unsigned BaseSize)
18 BaseSize(BaseSize), VirtualSize(VirtualSize) {
20 VirtualBases.push_back({ V.Decl, V.Offset + BaseSize, V.Desc, V.R });
14 Record(const RecordDecl *Decl, BaseList &&SrcBases, FieldList &&SrcFields, VirtualBaseList &&SrcVirtualBases, unsigned VirtualSize, unsigned BaseSize) argument
H A DRecord.h53 unsigned getSize() const { return BaseSize; }
55 unsigned getFullSize() const { return BaseSize + VirtualSize; }
91 unsigned BaseSize);
113 unsigned BaseSize; member in class:clang::interp::Record
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DValueSymbolTable.cpp45 unsigned BaseSize = UniqueName.size(); local
48 UniqueName.resize(BaseSize);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DValueTypes.h315 TypeSize BaseSize = getSizeInBits(); local
316 return {(BaseSize.getKnownMinSize() + 7) / 8, BaseSize.isScalable()};
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDataLayout.h455 TypeSize BaseSize = getTypeSizeInBits(Ty); local
456 return { (BaseSize.getKnownMinSize() + 7) / 8, BaseSize.isScalable() };
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLint.cpp467 uint64_t BaseSize = MemoryLocation::UnknownSize; local
473 BaseSize = DL->getTypeAllocSize(ATy);
483 BaseSize = DL->getTypeAllocSize(GTy);
493 BaseSize == MemoryLocation::UnknownSize ||
494 (Offset >= 0 && Offset + Size <= BaseSize),
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMachineValueType.h842 TypeSize BaseSize = getSizeInBits(); local
843 return {(BaseSize.getKnownMinSize() + 7) / 8, BaseSize.isScalable()};
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp1925 size_t BaseSize = 0; local
1927 BaseSize = std::max(BaseSize, getOption(i).size() + 8);
1928 return BaseSize;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1032 Optional<uint64_t> BaseSize = getTypeSize(BaseType, PointerSize);
1033 if (!BaseSize)
1035 uint64_t Size = *BaseSize;
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp2584 int64_t BaseSize = Base.second; local
2587 CurOffsetInBits = BaseOffset + BaseSize;

Completed in 296 milliseconds