Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DRecord.cpp16 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 DRecord.h53 unsigned getSize() const { return BaseSize; } in getSize()
55 unsigned getFullSize() const { return BaseSize + VirtualSize; } in getFullSize()
91 unsigned BaseSize);
113 unsigned BaseSize; variable
/netbsd/external/apache2/llvm/dist/llvm/lib/IR/
H A DValueSymbolTable.cpp45 unsigned BaseSize = UniqueName.size(); in makeUniqueName() local
48 UniqueName.resize(BaseSize); in makeUniqueName()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DValueTypes.h356 TypeSize BaseSize = getSizeInBits(); in getStoreSize() local
357 return {(BaseSize.getKnownMinSize() + 7) / 8, BaseSize.isScalable()}; in getStoreSize()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DDataLayout.h467 TypeSize BaseSize = getTypeSizeInBits(Ty); in getTypeStoreSize() local
468 return { (BaseSize.getKnownMinSize() + 7) / 8, BaseSize.isScalable() }; in getTypeStoreSize()
/netbsd/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLint.cpp441 uint64_t BaseSize = MemoryLocation::UnknownSize; in visitMemoryReference() local
447 BaseSize = DL->getTypeAllocSize(ATy); in visitMemoryReference()
455 BaseSize = DL->getTypeAllocSize(GTy); in visitMemoryReference()
464 Assert(!Loc.Size.hasValue() || BaseSize == MemoryLocation::UnknownSize || in visitMemoryReference()
465 (Offset >= 0 && Offset + Loc.Size.getValue() <= BaseSize), in visitMemoryReference()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DMachineValueType.h1025 TypeSize BaseSize = getSizeInBits(); in getStoreSize() local
1026 return {(BaseSize.getKnownMinSize() + 7) / 8, BaseSize.isScalable()}; in getStoreSize()
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/
H A DCommandLine.cpp1962 size_t BaseSize = 0; in getOptionWidth() local
1964 BaseSize = std::max(BaseSize, getOption(i).size() + 8); in getOptionWidth()
1965 return BaseSize; in getOptionWidth()
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1100 Optional<uint64_t> BaseSize = getTypeSize(BaseType, PointerSize); in getTypeSize() local
1101 if (!BaseSize) in getTypeSize()
1103 uint64_t Size = *BaseSize; in getTypeSize()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp2662 int64_t BaseSize = Base.second; in structHasUniqueObjectRepresentations() local
2665 CurOffsetInBits = BaseOffset + BaseSize; in structHasUniqueObjectRepresentations()