| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Record.cpp | 16 unsigned VirtualSize, unsigned BaseSize) in Record() argument 18 BaseSize(BaseSize), VirtualSize(VirtualSize) { in Record() 20 VirtualBases.push_back({ V.Decl, V.Offset + BaseSize, V.Desc, V.R }); in Record()
|
| H A D | Record.h | 58 unsigned getSize() const { return BaseSize; } in getSize() 60 unsigned getFullSize() const { return BaseSize + VirtualSize; } in getFullSize() 108 unsigned BaseSize); 129 unsigned BaseSize; variable
|
| H A D | Program.cpp | 237 unsigned BaseSize = 0; in getOrCreateRecord() local 261 BaseSize += align(sizeof(InlineDescriptor)); in getOrCreateRecord() 262 Bases.push_back({BD, BaseSize, Desc, BR}); in getOrCreateRecord() 263 BaseSize += align(BR->getSize()); in getOrCreateRecord() 287 BaseSize += align(sizeof(InlineDescriptor)); in getOrCreateRecord() 303 Fields.push_back({FD, BaseSize, Desc}); in getOrCreateRecord() 304 BaseSize += align(Desc->getAllocSize()); in getOrCreateRecord() 308 std::move(VirtBases), VirtSize, BaseSize); in getOrCreateRecord()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ValueSymbolTable.cpp | 45 unsigned BaseSize = UniqueName.size(); in makeUniqueName() local 48 UniqueName.resize(BaseSize); in makeUniqueName()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | LowLevelType.h | 194 TypeSize BaseSize = getSizeInBits(); in getSizeInBytes() local 195 return {(BaseSize.getKnownMinValue() + 7) / 8, BaseSize.isScalable()}; in getSizeInBytes()
|
| H A D | ValueTypes.h | 374 TypeSize BaseSize = getSizeInBits(); in getStoreSize() local 375 return {(BaseSize.getKnownMinValue() + 7) / 8, BaseSize.isScalable()}; in getStoreSize()
|
| H A D | MachineValueType.h | 353 TypeSize BaseSize = getSizeInBits(); in getStoreSize() local 354 return {(BaseSize.getKnownMinValue() + 7) / 8, BaseSize.isScalable()}; in getStoreSize()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DataLayout.h | 473 TypeSize BaseSize = getTypeSizeInBits(Ty); in getTypeStoreSize() local 474 return {divideCeil(BaseSize.getKnownMinValue(), 8), BaseSize.isScalable()}; in getTypeStoreSize()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | Lint.cpp | 448 uint64_t BaseSize = MemoryLocation::UnknownSize; in visitMemoryReference() local 454 BaseSize = DL->getTypeAllocSize(ATy); in visitMemoryReference() 462 BaseSize = DL->getTypeAllocSize(GTy); in visitMemoryReference() 471 Check(!Loc.Size.hasValue() || BaseSize == MemoryLocation::UnknownSize || in visitMemoryReference() 472 (Offset >= 0 && Offset + Loc.Size.getValue() <= BaseSize), in visitMemoryReference()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDie.cpp | 527 std::optional<uint64_t> BaseSize = in getTypeSizeImpl() local 529 if (!BaseSize) in getTypeSizeImpl() 531 uint64_t Size = *BaseSize; in getTypeSizeImpl()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | CommandLine.cpp | 2114 size_t BaseSize = 0; in getOptionWidth() local 2116 BaseSize = std::max(BaseSize, getOption(i).size() + 8); in getOptionWidth() 2117 return BaseSize; in getOptionWidth()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGClass.cpp | 1714 CharUnits BaseSize = BaseLayout.getSize(); in Emit() local 1716 if (!BaseSize.isPositive()) in Emit() 1723 BaseSize.getQuantity()); in Emit()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaType.cpp | 9962 uint64_t BaseSize = S.Context.getTypeSize(BaseType); in ChangeIntegralSignedness() local 9964 llvm::find_if(*Consider, [&S, BaseSize](const CanQual<Type> *T) { in ChangeIntegralSignedness() 9965 return BaseSize == S.Context.getTypeSize(T->getTypePtr()); in ChangeIntegralSignedness()
|