Home
last modified time | relevance | path

Searched refs:AllocType (Results 1 – 14 of 14) sorted by relevance

/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
Dalloc_F.pass.cpp26 template <class FuncType, class AllocType>
27 void test_FunctionObject(AllocType& alloc) in test_FunctionObject()
46 template <class FuncType, class AllocType>
47 void test_FreeFunction(AllocType& alloc) in test_FreeFunction()
63 template <class TargetType, class FuncType, class AllocType>
64 void test_MemFunClass(AllocType& alloc) in test_MemFunClass()
Dalloc_function.pass.cpp27 template <class FuncType, class AllocType>
28 void test_FunctionObject(AllocType& alloc) in test_FunctionObject()
51 template <class FuncType, class AllocType>
52 void test_FreeFunction(AllocType& alloc) in test_FreeFunction()
73 template <class TargetType, class FuncType, class AllocType>
74 void test_MemFunClass(AllocType& alloc) in test_MemFunClass()
/external/opencv3/modules/core/include/opencv2/core/
Dcuda.hpp356 enum AllocType { PAGE_LOCKED = 1, SHARED = 2, WRITE_COMBINED = 4 }; enum in cv::cuda::HostMem
358 static MatAllocator* getAllocator(AllocType alloc_type = PAGE_LOCKED);
360 explicit HostMem(AllocType alloc_type = PAGE_LOCKED);
364 HostMem(int rows, int cols, int type, AllocType alloc_type = PAGE_LOCKED);
365 HostMem(Size size, int type, AllocType alloc_type = PAGE_LOCKED);
368 explicit HostMem(InputArray arr, AllocType alloc_type = PAGE_LOCKED);
425 AllocType alloc_type;
Dcuda.inl.hpp385 HostMem::HostMem(AllocType alloc_type_) in HostMem()
399 HostMem::HostMem(int rows_, int cols_, int type_, AllocType alloc_type_) in HostMem()
407 HostMem::HostMem(Size size_, int type_, AllocType alloc_type_) in HostMem()
415 HostMem::HostMem(InputArray arr, AllocType alloc_type_) in HostMem()
/external/compiler-rt/lib/asan/
Dasan_allocator.h26 enum AllocType { enum
161 AllocType alloc_type);
162 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type);
164 AllocType alloc_type);
Dasan_report.h61 AllocType alloc_type,
62 AllocType dealloc_type);
Dasan_allocator.cc324 AllocType alloc_type, bool can_fill) { in Allocate()
473 AllocType alloc_type) { in QuarantineChunk()
478 ReportAllocTypeMismatch((uptr)ptr, stack, (AllocType)m->alloc_type, in QuarantineChunk()
479 (AllocType)alloc_type); in QuarantineChunk()
513 AllocType alloc_type) { in Deallocate()
704 AllocType alloc_type) { in asan_memalign()
708 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type) { in asan_free()
713 AllocType alloc_type) { in asan_sized_free()
Dasan_report.cc835 AllocType alloc_type, in ReportAllocTypeMismatch()
836 AllocType dealloc_type) { in ReportAllocTypeMismatch()
/external/clang/lib/Sema/
DSemaExprCXX.cpp1225 QualType AllocType = TInfo->getType(); in ActOnCXXNew() local
1238 AllocType, in ActOnCXXNew()
1271 QualType AllocType, in BuildCXXNew() argument
1302 if (TypeMayContainAuto && AllocType->isUndeducedType()) { in BuildCXXNew()
1305 << AllocType << TypeRange); in BuildCXXNew()
1310 << AllocType << TypeRange); in BuildCXXNew()
1315 << AllocType << TypeRange); in BuildCXXNew()
1321 << AllocType << Deduce->getType() in BuildCXXNew()
1325 AllocType = DeducedType; in BuildCXXNew()
1332 = Context.getAsConstantArrayType(AllocType)) { in BuildCXXNew()
[all …]
DTreeTransform.h9192 QualType AllocType = AllocTypeInfo->getType(); in TransformCXXNewExpr() local
9199 const ArrayType *ArrayT = SemaRef.Context.getAsArrayType(AllocType); in TransformCXXNewExpr()
9207 AllocType = ConsArrayT->getElementType(); in TransformCXXNewExpr()
9212 AllocType = DepArrayT->getElementType(); in TransformCXXNewExpr()
9223 AllocType, in TransformCXXNewExpr()
/external/clang/lib/CodeGen/
DCGExprCXX.cpp802 QualType AllocType, Address NewPtr) { in StoreAnyExprIntoOneUnit() argument
804 switch (CGF.getEvaluationKind(AllocType)) { in StoreAnyExprIntoOneUnit()
807 CGF.MakeAddrLValue(NewPtr, AllocType), false); in StoreAnyExprIntoOneUnit()
810 CGF.EmitComplexExprIntoLValue(Init, CGF.MakeAddrLValue(NewPtr, AllocType), in StoreAnyExprIntoOneUnit()
815 = AggValueSlot::forAddr(NewPtr, AllocType.getQualifiers(), in StoreAnyExprIntoOneUnit()
855 QualType AllocType = E->getAllocatedType(); in EmitNewArrayInitializer() local
857 AllocType->getAsArrayTypeUnsafe())) { in EmitNewArrayInitializer()
858 ElementTy = ConvertTypeForMem(AllocType); in EmitNewArrayInitializer()
/external/llvm/lib/Analysis/
DMemoryBuiltins.cpp34 enum AllocType : uint8_t { enum
46 AllocType AllocTy;
101 static const AllocFnsTy *getAllocationData(const Value *V, AllocType AllocTy, in getAllocationData()
/external/opencv3/modules/core/src/
Dcuda_host_mem.cpp136 MatAllocator* cv::cuda::HostMem::getAllocator(AllocType alloc_type) in getAllocator()
/external/clang/include/clang/Sema/
DSema.h4662 QualType AllocType,
4669 bool CheckAllocatedType(QualType AllocType, SourceLocation Loc,
4672 bool UseGlobal, QualType AllocType, bool IsArray,