HomeSort by relevance Sort by last modified time
    Searched refs:AllocSize (Results 1 - 16 of 16) 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);
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
  /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/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...]
  /frameworks/compile/slang/
slang_rs_export_type.h 556 size_t AllocSize)
561 mAllocSize(AllocSize) {
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/IR/
Instructions.cpp 373 Type *AllocTy, Value *AllocSize,
395 if (IsConstantOne(AllocSize)) {
396 AllocSize = ArraySize; // Operand * 1 = Operand
401 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
405 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
408 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
413 assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size")
    [all...]
Core.cpp     [all...]
  /external/clang/lib/Rewrite/Core/
RewriteRope.cpp 794 unsigned AllocSize = offsetof(RopeRefCountString, Data) + AllocChunkSize;
795 AllocBuffer = reinterpret_cast<RopeRefCountString *>(new char[AllocSize]);
  /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/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 6564 milliseconds