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

  /external/llvm/tools/lli/ChildTarget/
ChildTarget.cpp 108 uint32_t AllocSize = 0;
111 rc = ReadBytes(&AllocSize, 4);
116 RT->allocateSpace(AllocSize, Alignment, Addr);
  /external/llvm/include/llvm/ADT/
StringMap.h 154 unsigned AllocSize = static_cast<unsigned>(sizeof(StringMapEntry))+
159 static_cast<StringMapEntry*>(Allocator.Allocate(AllocSize,Alignment));
200 unsigned AllocSize =
203 Allocator.Deallocate(static_cast<void *>(this), AllocSize);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
perflib.h 22 typedef LPVOID (CALLBACK *PERF_MEM_ALLOC)(SIZE_T AllocSize,LPVOID pContext);
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
TargetInfo.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 626 const uint64_t AllocSize;
638 AllocSize(DL.getTypeAllocSize(AI.getAllocatedType())), AS(AS) {}
650 if (Size == 0 || Offset.uge(AllocSize)) {
653 << AllocSize << " byte alloca:\n"
668 assert(AllocSize >= BeginOffset); // Established above.
669 if (Size > AllocSize - BeginOffset) {
671 << " to remain within the " << AllocSize << " byte alloca:\n"
674 EndOffset = AllocSize;
725 if (GEPOffset.ugt(AllocSize))
772 if (Size > AllocSize || Offset.ugt(AllocSize - Size))
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.h 590 size_t AllocSize)
595 mAllocSize(AllocSize) {
slang_rs_reflection_cpp.cpp 752 size_t AllocSize = ET->getAllocSize();
754 if (AllocSize > 0) {
756 << AllocSize << ");\n";
    [all...]
slang_rs_reflection.cpp     [all...]
  /external/llvm/lib/IR/
Instructions.cpp 386 Type *AllocTy, Value *AllocSize,
408 if (IsConstantOne(AllocSize)) {
409 AllocSize = ArraySize; // Operand * 1 = Operand
414 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
418 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
421 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
426 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size")
    [all...]
Core.cpp     [all...]
  /external/clang/lib/Rewrite/
RewriteRope.cpp 791 unsigned AllocSize = offsetof(RopeRefCountString, Data) + AllocChunkSize;
793 reinterpret_cast<RopeRefCountString *>(new char[AllocSize]);
  /external/llvm/lib/Analysis/
InlineCost.cpp 296 ConstantInt *AllocSize = dyn_cast<ConstantInt>(Size);
297 assert(AllocSize && "Allocation size not a constant int?");
299 AllocatedSize += Ty->getPrimitiveSizeInBits() * AllocSize->getZExtValue();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]

Completed in 2895 milliseconds