HomeSort by relevance Sort by last modified time
    Searched defs:AllocSize (Results 1 - 10 of 10) sorted by null

  /external/llvm/tools/lli/ChildTarget/
ChildTarget.cpp 108 uint32_t AllocSize;
111 rc = ReadBytes(&AllocSize, 4);
116 RT->allocateSpace(AllocSize, Alignment, Addr);
  /external/llvm/include/llvm/ADT/
StringMap.h 149 unsigned AllocSize = static_cast<unsigned>(sizeof(StringMapEntry))+
154 static_cast<StringMapEntry*>(Allocator.Allocate(AllocSize,Alignment));
207 unsigned AllocSize =
210 Allocator.Deallocate(static_cast<void *>(this), AllocSize);
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 701 size_t AllocSize = ET->getAllocSize();
703 if (AllocSize > 0) {
705 << AllocSize << ");\n";
    [all...]
slang_rs_reflection.cpp     [all...]
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 277 ConstantInt *AllocSize = dyn_cast<ConstantInt>(Size);
278 assert(AllocSize && "Allocation size not a constant int?");
280 AllocatedSize += Ty->getPrimitiveSizeInBits() * AllocSize->getZExtValue();
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 336 const uint64_t AllocSize;
348 AllocSize(DL.getTypeAllocSize(AI.getAllocatedType())), S(S) {}
360 if (Size == 0 || Offset.uge(AllocSize)) {
363 << AllocSize << " byte alloca:\n"
378 assert(AllocSize >= BeginOffset); // Established above.
379 if (Size > AllocSize - BeginOffset) {
381 << " to remain within the " << AllocSize << " byte alloca:\n"
384 EndOffset = AllocSize;
433 if (GEPOffset.ugt(AllocSize))
452 Ty->isIntegerTy() && !IsVolatile && Offset == 0 && Size >= AllocSize;
    [all...]
  /external/llvm/lib/IR/
Core.cpp     [all...]

Completed in 441 milliseconds