Searched refs:getSize (Results 1 - 25 of 279) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DArrayRecycler.h49 __asan_unpoison_memory_region(Entry, Capacity::get(Idx).getSize());
51 __msan_allocated_memory(Entry, Capacity::get(Idx).getSize());
63 __asan_poison_memory_region(Ptr, Capacity::get(Idx).getSize());
84 size_t getSize() const { return size_t(1u) << Index; } function in class:llvm::ArrayRecycler::Capacity
130 return static_cast<T*>(Allocator.Allocate(sizeof(T)*Cap.getSize(), Align));
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.h49 virtual size_t getSize() const = 0;
73 size_t getSize() const override { return size; }
121 size_t getSize() const override { return size; }
151 size_t getSize() const override { return 0; }
158 size_t getSize() const override;
170 size_t getSize() const override { return headerSize + hashSize; }
188 size_t getSize() const override { return size; }
198 size_t getSize() const override { return size; }
375 size_t getSize() const override;
395 size_t getSize() cons
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.h47 virtual uint32_t getSize() { return BTF::CommonTypeSize; } function in class:llvm::BTFTypeBase
87 uint32_t getSize() { return BTFTypeBase::getSize() + sizeof(uint32_t); } function in class:llvm::BTFTypeInt
99 uint32_t getSize() { function in class:llvm::BTFTypeEnum
100 return BTFTypeBase::getSize() + EnumValues.size() * BTF::BTFEnumSize;
112 uint32_t getSize() { return BTFTypeBase::getSize() + BTF::BTFArraySize; } function in class:llvm::BTFTypeArray
126 uint32_t getSize() { function in class:llvm::BTFTypeStruct
127 return BTFTypeBase::getSize() + Members.size() * BTF::BTFMemberSize;
143 uint32_t getSize() { function in class:llvm::BTFTypeFuncProto
156 uint32_t getSize() { return BTFTypeBase::getSize(); } function in class:llvm::BTFTypeFunc
168 uint32_t getSize() { return BTFTypeBase::getSize() + 4; } function in class:llvm::BTFKindVar
181 uint32_t getSize() { function in class:llvm::BTFKindDataSec
205 uint32_t getSize() { return Size; } function in class:llvm::BTFStringTable
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolELF.h24 const MCExpr *getSize() const { return SymbolSize; } function in class:llvm::MCSymbolELF
H A DStringTableBuilder.h62 size_t getSize() const { return Size; } function in class:llvm::StringTableBuilder
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DChunks.h61 size_t getSize() const;
149 virtual size_t getSize() const = 0;
203 size_t getSize() const { return header->SizeOfRawData; } function in class:lld::coff::final
348 inline size_t Chunk::getSize() const { function in class:lld::coff::Chunk
350 return static_cast<const SectionChunk *>(this)->getSize();
352 return static_cast<const NonSectionChunk *>(this)->getSize();
409 size_t getSize() const override;
424 size_t getSize() const override { return sym.getValue(); }
436 size_t getSize() const override { return str.size() + 1; }
475 size_t getSize() cons
[all...]
H A DDLL.h74 uint64_t getSize() { function in class:lld::coff::EdataContents
75 return chunks.back()->getRVA() + chunks.back()->getSize() - getRVA();
H A DDLL.cpp42 size_t getSize() const override {
49 memset(buf, 0, getSize());
65 size_t getSize() const override { return config->wordsize; }
85 size_t getSize() const override { return config->wordsize; }
104 size_t getSize() const override { return sizeof(ImportDirectoryTableEntry); }
107 memset(buf, 0, getSize());
125 size_t getSize() const override { return size; }
168 size_t getSize() const override {
173 memset(buf, 0, getSize());
298 size_t getSize() cons
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DPointer.h60 return Pointer(Pointee, RootPtrMark, getDeclDesc()->getSize());
120 return Pointer(Pointee, Base, Base + getSize() + Adjust);
183 return getDeclDesc()->getSize();
187 size_t getSize() const { return getFieldDesc()->getSize(); } function in class:clang::interp::Pointer
260 unsigned getNumElems() const { return getSize() / elemSize(); }
273 return isElementPastEnd() || getSize() == getOffset();
306 OS << Pointee->getSize();
H A DBlock.h59 InterpSize getSize() const { return Desc->getAllocSize(); } function in class:clang::interp::Block
72 std::memset(data(), 0, getSize());
H A DDescriptor.h128 unsigned getSize() const { function in struct:clang::interp::Descriptor
140 return Size == UnknownSizeMark ? 0 : (getSize() / getElemSize());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DMachOUniversal.cpp150 bigSize += A.getSize();
194 A.getOffset() < B.getOffset() + B.getSize()) ||
195 (A.getOffset() + A.getSize() > B.getOffset() &&
196 A.getOffset() + A.getSize() < B.getOffset() + B.getSize()) ||
198 A.getOffset() + A.getSize() >= B.getOffset() + B.getSize())) {
202 Twine(A.getSize()) + ", overlaps cputype (" + Twine(B.getCPUType()) +
205 + Twine(B.getSize()));
H A DSymbolSize.cpp48 Ret.push_back({Sym, Sym.getSize()});
64 uint64_t Size = Sec.getSize();
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyClassDefinitionDumper.cpp50 uint32_t Size = Layout.getSize();
98 (double)Layout.getSize());
106 (double)Layout.getSize());
H A DPrettyTypeDumper.cpp44 return S1->getSize() < S2->getSize();
52 double Pct1 = (double)S1->deepPaddingSize() / (double)S1->getSize();
53 double Pct2 = (double)S2->deepPaddingSize() / (double)S2->getSize();
63 double Pct1 = (double)S1->immediatePadding() / (double)S1->getSize();
64 double Pct2 = (double)S2->immediatePadding() / (double)S2->getSize();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DRegisterBank.h54 unsigned getSize() const { return Size; } function in class:llvm::RegisterBank
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DRegisterBank.cpp52 assert(getSize() >= TRI.getRegSizeInBits(SubRC) &&
91 OS << "(ID:" << getID() << ", Size:" << getSize() << ")\n"
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dquarantine.h74 uptr getSize() const { return atomic_load_relaxed(&Size); } function in class:scudo::QuarantineCache
93 addToSize(From->getSize());
166 void addToSize(uptr add) { atomic_store_relaxed(&Size, getSize() + add); }
167 void subFromSize(uptr sub) { atomic_store_relaxed(&Size, getSize() - sub); }
199 if (C->getSize() > getCacheSize())
208 if (Cache.getSize() > getMaxSize() && RecycleMutex.tryLock())
258 const uptr CacheSize = Cache.getSize();
272 while (Cache.getSize() > MinSize)
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCastSizeChecker.cpp67 if (ArrayTy->getSize() == 1 && TypeSize > FlexSize)
69 else if (ArrayTy->getSize() != 0)
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuilder.h60 llvm::ConstantInt *getSize(CharUnits N) { function in class:clang::CodeGen::CGBuilderTy
63 llvm::ConstantInt *getSize(uint64_t N) { function in class:clang::CodeGen::CGBuilderTy
207 {getSize(CharUnits::Zero()), getSize(Index)}, Name),
223 getSize(Index), Name),
239 getSize(Index), Name),
247 return Address(CreateInBoundsGEP(Addr.getPointer(), getSize(Offset), Name),
253 return Address(CreateGEP(Addr.getPointer(), getSize(Offset), Name),
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp138 int getSize() const { return Nodes.size(); } function in class:clang::diff::SyntaxTree::Impl
141 PreorderIterator end() const { return getSize(); }
145 bool isValidNodeId(NodeId Id) const { return Id >= 0 && Id < getSize(); }
223 N.RightMostDescendant < Tree.getSize() &&
307 PostorderIds.resize(getSize());
502 int getSize() const { return RootIds.size(); } function in class:clang::diff::Subtree
504 assert(Id > 0 && Id <= getSize() && "Invalid subtree node index.");
511 assert(Id > 0 && Id <= getSize() && "Invalid subtree node index.");
526 LeftMostDescendants.resize(getSize());
527 for (int I = 0; I < getSize();
983 int SyntaxTree::getSize() const { return TreeImpl->getSize(); } function in class:clang::diff::SyntaxTree
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DNode.h40 // This is a marker for --end-group. getSize() returns the number of
46 int getSize() const { return _size; } function in class:lld::GroupEnd
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblySetP2AlignOperands.cpp62 assert((*MI.memoperands_begin())->getSize() ==
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DNonRelocatableStringpool.h52 uint64_t getSize() { return CurrentEndOffset; } function in class:llvm::NonRelocatableStringpool
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLink.cpp94 << formatv("{0:x16}", B.getAddress() + B.getSize()) << ": "
128 << ", size = " << formatv("{0:x8}", Sym.getSize())
158 if (SplitIndex == B.getSize())
161 assert(SplitIndex < B.getSize() && "SplitIndex out of range");

Completed in 297 milliseconds

1234567891011>>