Searched defs:AllocSize (Results 1 - 15 of 15) sorted by relevance

/external/skia/src/core/
H A DSkAutoPixmapStorage.cpp27 size_t SkAutoPixmapStorage::AllocSize(const SkImageInfo& info, size_t* rowBytes) { function in class:SkAutoPixmapStorage
39 size_t size = AllocSize(info, &rb);
/external/skqp/src/core/
H A DSkAutoPixmapStorage.cpp27 size_t SkAutoPixmapStorage::AllocSize(const SkImageInfo& info, size_t* rowBytes) { function in class:SkAutoPixmapStorage
39 size_t size = AllocSize(info, &rb);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp29 uintptr_t AllocSize = Size; local
30 uint8_t *Mem = MemMgr->startFunctionBody(Name.data(), AllocSize);
/external/llvm/include/llvm/ADT/
H A DStringMap.h158 unsigned AllocSize = static_cast<unsigned>(sizeof(StringMapEntry))+ local
163 static_cast<StringMapEntry*>(Allocator.Allocate(AllocSize,Alignment));
199 unsigned AllocSize = local
202 Allocator.Deallocate(static_cast<void *>(this), AllocSize); local
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DStringMap.h157 unsigned AllocSize = static_cast<unsigned>(sizeof(StringMapEntry))+ local
162 static_cast<StringMapEntry*>(Allocator.Allocate(AllocSize,Alignment));
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DStringMap.h164 unsigned AllocSize = static_cast<unsigned>(sizeof(StringMapEntry))+ local
169 static_cast<StringMapEntry*>(Allocator.Allocate(AllocSize,Alignment));
205 unsigned AllocSize = local
208 Allocator.Deallocate(static_cast<void *>(this), AllocSize); local
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteAlloca.cpp172 uint64_t AllocSize = DL.getTypeAllocSize(GV.getValueType()); local
174 CurrentLocalMemUsage += AllocSize;
669 uint32_t AllocSize = WorkGroupSize * DL.getTypeAllocSize(AllocaTy); local
670 NewSize += AllocSize;
673 DEBUG(dbgs() << " " << AllocSize
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1491 Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize); local
1496 CallInst::CreateMalloc(CI, IntPtrTy, AllocSTy, AllocSize, NumElements,
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DGlobalOpt.cpp1554 Value *AllocSize = ConstantInt::get(IntPtrTy, TypeSize); local
1557 AllocSize, NumElements,
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp1169 llvm::Value *AllocSize; member in class:__anon1579::final
1181 llvm::Value *AllocSize)
1183 Ptr(Ptr), AllocSize(AllocSize) {}
1204 DeleteArgs.add(RValue::get(AllocSize), *AI++);
1222 DominatingValue<RValue>::saved_type AllocSize; member in class:__anon1579::final
1236 DominatingValue<RValue>::saved_type AllocSize)
1238 Ptr(Ptr), AllocSize(AllocSize) {}
1259 RValue RV = AllocSize
1178 CallDeleteDuringNew(size_t NumPlacementArgs, const FunctionDecl *OperatorDelete, llvm::Value *Ptr, llvm::Value *AllocSize) argument
1233 CallDeleteDuringConditionalNew(size_t NumPlacementArgs, const FunctionDecl *OperatorDelete, DominatingValue<RValue>::saved_type Ptr, DominatingValue<RValue>::saved_type AllocSize) argument
1277 EnterNewDeleteCleanup(CodeGenFunction &CGF, const CXXNewExpr *E, Address NewPtr, llvm::Value *AllocSize, const CallArgList &NewArgs) argument
[all...]
/external/libcxxabi/src/
H A Dcxa_demangle.cpp1722 static constexpr size_t AllocSize = 4096; member in class:__anon11207::BumpPointerAllocator
1723 static constexpr size_t UsableAllocSize = AllocSize - sizeof(BlockMeta);
1725 alignas(16) char InitialBuffer[AllocSize];
1729 char* NewMeta = new char[AllocSize];
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstructions.cpp355 Type *AllocTy, Value *AllocSize,
377 if (IsConstantOne(AllocSize)) {
378 AllocSize = ArraySize; // Operand * 1 = Operand
383 AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
387 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
390 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
395 assert(AllocSize
353 createMalloc(Instruction *InsertBefore, BasicBlock *InsertAtEnd, Type *IntPtrTy, Type *AllocTy, Value *AllocSize, Value *ArraySize, Function *MallocF, const Twine &Name) argument
438 CreateMalloc(Instruction *InsertBefore, Type *IntPtrTy, Type *AllocTy, Value *AllocSize, Value *ArraySize, Function * MallocF, const Twine &Name) argument
455 CreateMalloc(BasicBlock *InsertAtEnd, Type *IntPtrTy, Type *AllocTy, Value *AllocSize, Value *ArraySize, Function *MallocF, const Twine &Name) argument
[all...]
H A DCore.cpp1984 Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty)); local
1985 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
1987 ITy, unwrap(Ty), AllocSize,
1995 Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty)); local
1996 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
1998 ITy, unwrap(Ty), AllocSize,
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp3127 SDValue AllocSize = getValue(I.getArraySize()); local
3130 if (AllocSize.getValueType() != IntPtr)
3131 AllocSize = DAG.getZExtOrTrunc(AllocSize, getCurDebugLoc(), IntPtr);
3133 AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), IntPtr,
3134 AllocSize,
3146 AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(),
3147 AllocSize.getValueType(), AllocSize,
3151 AllocSize
[all...]
/external/llvm/lib/IR/
H A DCore.cpp2693 Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty)); local
2694 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2696 ITy, unwrap(Ty), AllocSize,
2704 Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty)); local
2705 AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
2707 ITy, unwrap(Ty), AllocSize,

Completed in 509 milliseconds