HomeSort by: relevance | last modified time | path
    Searched refs:getSize (Results 1 - 25 of 309) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/elftosb/dist/common/
Value.cpp 14 size_t SizedIntegerValue::getSize() const
Value.h 28 virtual size_t getSize() const = 0;
42 virtual size_t getSize() const { return sizeof(m_value); }
74 virtual size_t getSize() const;
108 virtual size_t getSize() const { return m_value.size(); }
133 virtual size_t getSize() const { return getLength(); }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ArrayRecycler.h 49 __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; }
130 return static_cast<T*>(Allocator.Allocate(sizeof(T)*Cap.getSize(), Align));
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BTFDebug.h 53 virtual uint32_t getSize() { return BTF::CommonTypeSize; }
93 uint32_t getSize() override { return BTFTypeBase::getSize() + sizeof(uint32_t); }
105 uint32_t getSize() override {
106 return BTFTypeBase::getSize() + EnumValues.size() * BTF::BTFEnumSize;
118 uint32_t getSize() override { return BTFTypeBase::getSize() + BTF::BTFArraySize; }
132 uint32_t getSize() override {
133 return BTFTypeBase::getSize() + Members.size() * BTF::BTFMemberSize;
149 uint32_t getSize() override
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSymbolELF.h 24 const MCExpr *getSize() const { return SymbolSize; }
StringTableBuilder.h 82 size_t getSize() const { return Size; }
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Pointer.h 60 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(); }
260 unsigned getNumElems() const { return getSize() / elemSize(); }
273 return isElementPastEnd() || getSize() == getOffset();
306 OS << Pointee->getSize();
Descriptor.h 128 unsigned getSize() const {
140 return Size == UnknownSizeMark ? 0 : (getSize() / getElemSize());
InterpBlock.h 59 InterpSize getSize() const { return Desc->getAllocSize(); }
72 std::memset(data(), 0, getSize());
InterpState.cpp 60 size_t Size = B->getSize();
  /src/external/apache2/llvm/dist/llvm/lib/Object/
MachOUniversal.cpp 170 bigSize += A.getSize();
214 A.getOffset() < B.getOffset() + B.getSize()) ||
215 (A.getOffset() + A.getSize() > B.getOffset() &&
216 A.getOffset() + A.getSize() < B.getOffset() + B.getSize()) ||
218 A.getOffset() + A.getSize() >= B.getOffset() + B.getSize())) {
222 Twine(A.getSize()) + ", overlaps cputype (" + Twine(B.getCPUType()) +
225 + Twine(B.getSize()));
  /src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
SectionSizes.cpp 93 LLVM_DEBUG(dbgs() << SectionName.str() << ": " << Section.getSize()
99 Sizes.TotalDebugSectionsSize += Section.getSize();
100 Sizes.DebugSectionSizes[std::string(SectionName)] += Section.getSize();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PrettyClassDefinitionDumper.cpp 50 uint32_t Size = Layout.getSize();
98 (double)Layout.getSize());
106 (double)Layout.getSize());
PrettyTypeDumper.cpp 44 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();
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
RegisterBank.h 54 unsigned getSize() const { return Size; }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
RegisterBank.cpp 53 assert(getSize() >= TRI.getRegSizeInBits(SubRC) &&
92 OS << "(ID:" << getID() << ", Size:" << getSize() << ")\n"
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsPreLegalizerCombiner.cpp 53 if (!isPowerOf2_64(MMO->getSize()))
55 bool isUnaligned = MMO->getAlign() < MMO->getSize();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
llvm-jitlink-elf.cpp 121 if (Sym->getSize() != 0) {
144 S.SymbolInfos[Sym->getName()] = {Sym->getSize(), Sym->getAddress()};
156 (LastSym->getBlock().getAddress() + LastSym->getBlock().getSize()) -
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBuilder.h 59 llvm::ConstantInt *getSize(CharUnits N) {
62 llvm::ConstantInt *getSize(uint64_t N) {
217 {getSize(CharUnits::Zero()), getSize(Index)}, Name),
233 getSize(Index), Name),
249 getSize(Index), Name),
258 getSize(Offset), Name),
264 return Address(CreateGEP(Addr.getPointer(), getSize(Offset), Name),
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 69 if (ArrayTy->getSize() == 1 && TypeSize > FlexSize)
71 else if (ArrayTy->getSize() != 0)
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
AliasSetTracker.cpp 67 MemoryLocation(L->getValue(), L->getSize(), L->getAAInfo()),
68 MemoryLocation(R->getValue(), R->getSize(), R->getAAInfo())))
142 MemoryLocation(P->getValue(), P->getSize(), P->getAAInfo()),
207 return AA.alias(MemoryLocation(SomePtr->getValue(), SomePtr->getSize(),
217 MemoryLocation(I.getPointer(), I.getSize(), I.getAAInfo()));
255 Inst, MemoryLocation(I.getPointer(), I.getSize(), I.getAAInfo()))))
535 MemoryLocation(ASI.getPointer(), ASI.getSize(), ASI.getAAInfo()),
587 AS->addPointer(*this, Entry, I->second->getSize(), I->second->getAAInfo(),
664 if (I.getSize() == LocationSize::afterPointer())
666 else if (I.getSize() == LocationSize::beforeOrAfterPointer()
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
Table.cc 244 getSize ()
353 getSize ()
462 getSize ()
571 getSize ()
687 getSize ()
797 getSize ()
900 getSize ()
1211 if (d == NULL || idx >= d->getSize ())
1220 if (d == NULL || idx >= d->getSize ())
1229 if (d == NULL || idx >= d->getSize ())
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Table.cc 244 getSize ()
353 getSize ()
462 getSize ()
571 getSize ()
687 getSize ()
797 getSize ()
900 getSize ()
1211 if (d == NULL || idx >= d->getSize ())
1220 if (d == NULL || idx >= d->getSize ())
1229 if (d == NULL || idx >= d->getSize ())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
ASTDiff.cpp 139 int getSize() const { return Nodes.size(); }
142 PreorderIterator end() const { return getSize(); }
146 bool isValidNodeId(NodeId Id) const { return Id >= 0 && Id < getSize(); }
224 N.RightMostDescendant < Tree.getSize() &&
308 PostorderIds.resize(getSize());
503 int getSize() const { return RootIds.size(); }
505 assert(Id > 0 && Id <= getSize() && "Invalid subtree node index.");
512 assert(Id > 0 && Id <= getSize() && "Invalid subtree node index.");
527 LeftMostDescendants.resize(getSize());
528 for (int I = 0; I < getSize(); ++I)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
NonRelocatableStringpool.h 52 uint64_t getSize() { return CurrentEndOffset; }

Completed in 74 milliseconds

1 2 3 4 5 6 7 8 91011>>