Searched refs:AllocatedType (Results 1 - 4 of 4) sorted by relevance
/external/jsoncpp/src/lib_json/ |
H A D | json_batchallocator.h | 28 template <typename AllocatedType, const unsigned int objectPerAllocation> 33 // printf( "Size: %d => %s\n", sizeof(AllocatedType), 34 // typeid(AllocatedType).name() ); 35 assert(sizeof(AllocatedType) * objectPerAllocation >= 36 sizeof(AllocatedType*)); // We must be able to store a slist in the 54 AllocatedType* allocate() { 57 AllocatedType* object = freeHead_; 58 freeHead_ = *(AllocatedType**)object; 73 AllocatedType* allocated = currentBatch_->used_; 81 void release(AllocatedType* objec [all...] |
/external/llvm/include/llvm/IR/ |
H A D | Instructions.h | 78 Type *AllocatedType; member in class:llvm::AllocaInst 123 Type *getAllocatedType() const { return AllocatedType; } 126 void setAllocatedType(Type *Ty) { AllocatedType = Ty; }
|
/external/llvm/lib/IR/ |
H A D | Instructions.cpp | 1139 AllocatedType(Ty) { 1149 AllocatedType(Ty) {
|
/external/clang/lib/Sema/ |
H A D | TreeTransform.h | 2516 QualType AllocatedType, 2526 AllocatedType, 2510 RebuildCXXNewExpr(SourceLocation StartLoc, bool UseGlobal, SourceLocation PlacementLParen, MultiExprArg PlacementArgs, SourceLocation PlacementRParen, SourceRange TypeIdParens, QualType AllocatedType, TypeSourceInfo *AllocatedTypeInfo, Expr *ArraySize, SourceRange DirectInitRange, Expr *Initializer) argument
|
Completed in 168 milliseconds