Home
last modified time | relevance | path

Searched refs:AllocatedType (Results 1 – 5 of 5) sorted by relevance

/external/jsoncpp/src/lib_json/
Djson_batchallocator.h28 template <typename AllocatedType, const unsigned int objectPerAllocation>
35 assert(sizeof(AllocatedType) * objectPerAllocation >=
36 sizeof(AllocatedType*)); // We must be able to store a slist in the
54 AllocatedType* allocate() { in allocate()
57 AllocatedType* object = freeHead_; in allocate()
58 freeHead_ = *(AllocatedType**)object; in allocate()
73 AllocatedType* allocated = currentBatch_->used_; in allocate()
81 void release(AllocatedType* object) { in release()
83 *(AllocatedType**)object = freeHead_; in release()
90 AllocatedType* used_;
[all …]
/external/llvm/lib/IR/
DValue.cpp623 Type *AllocatedType = AI->getAllocatedType(); in getPointerAlignment() local
624 if (AllocatedType->isSized()) in getPointerAlignment()
625 Align = DL.getPrefTypeAlignment(AllocatedType); in getPointerAlignment()
DInstructions.cpp1268 AllocatedType(Ty) { in AllocaInst()
1278 AllocatedType(Ty) { in AllocaInst()
/external/llvm/include/llvm/IR/
DInstructions.h52 Type *AllocatedType; variable
97 Type *getAllocatedType() const { return AllocatedType; } in getAllocatedType()
100 void setAllocatedType(Type *Ty) { AllocatedType = Ty; } in setAllocatedType()
/external/clang/lib/Sema/
DTreeTransform.h2589 QualType AllocatedType, in RebuildCXXNewExpr() argument
2599 AllocatedType, in RebuildCXXNewExpr()