Searched defs:AllocType (Results 1 - 8 of 8) sorted by relevance

/external/syslinux/gnu-efi/gnu-efi-3.0/apps/
H A DAllocPages.c119 INTN AllocType = -1; local
169 AllocType = xtoi(argv[1]);
174 if ( (AllocType < 0) || (AllocType > 2)) {
175 Print(L"Invalid AllocType\n");
194 Print(L"AllocatPage(%d,%d,%d,%lx)\n", AllocType, MemType, NumPages, Addr);
196 efi_status = uefi_call_wrapper(BS->AllocatePages, 4, AllocType, MemType, NumPages, &Addr);
/external/skia/src/core/
H A DSkMask.h117 enum AllocType { enum in struct:SkMask
121 static uint8_t* AllocImage(size_t bytes, AllocType = kUninit_Alloc);
/external/skqp/include/core/
H A DSkMask.h117 enum AllocType { enum in struct:SkMask
121 static uint8_t* AllocImage(size_t bytes, AllocType = kUninit_Alloc);
/external/compiler-rt/lib/asan/
H A Dasan_allocator.h26 enum AllocType { enum in namespace:__asan
164 AllocType alloc_type);
165 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type);
167 AllocType alloc_type);
/external/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp73 u8 AllocType : 2; // malloc, new, new[], or memalign member in struct:__scudo::UnpackedHeader
317 void *allocate(uptr Size, uptr Alignment, AllocType Type) {
364 Header.AllocType = Type;
377 void deallocate(void *UserPtr, uptr DeleteSize, AllocType Type) {
402 if (NewHeader.AllocType != Type) {
404 if (NewHeader.AllocType != FromMemalign || Type != FromMalloc) {
473 if (OldHeader.AllocType != FromMalloc) {
538 void *scudoMalloc(uptr Size, AllocType Type) {
542 void scudoFree(void *Ptr, AllocType Type) {
546 void scudoSizedFree(void *Ptr, uptr Size, AllocType Typ
[all...]
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp807 QualType AllocType, Address NewPtr) {
809 switch (CGF.getEvaluationKind(AllocType)) {
812 CGF.MakeAddrLValue(NewPtr, AllocType), false);
815 CGF.EmitComplexExprIntoLValue(Init, CGF.MakeAddrLValue(NewPtr, AllocType),
820 = AggValueSlot::forAddr(NewPtr, AllocType.getQualifiers(),
860 QualType AllocType = E->getAllocatedType(); local
862 AllocType->getAsArrayTypeUnsafe())) {
863 ElementTy = ConvertTypeForMem(AllocType);
806 StoreAnyExprIntoOneUnit(CodeGenFunction &CGF, const Expr *Init, QualType AllocType, Address NewPtr) argument
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp1458 QualType AllocType = TInfo->getType(); local
1471 AllocType,
1504 QualType AllocType,
1535 if (TypeMayContainAuto && AllocType->isUndeducedType()) {
1538 << AllocType << TypeRange);
1543 << AllocType << TypeRange);
1548 << AllocType << TypeRange);
1554 << AllocType << Deduce->getType()
1558 AllocType = DeducedType;
1565 = Context.getAsConstantArrayType(AllocType)) {
1499 BuildCXXNew(SourceRange Range, bool UseGlobal, SourceLocation PlacementLParen, MultiExprArg PlacementArgs, SourceLocation PlacementRParen, SourceRange TypeIdParens, QualType AllocType, TypeSourceInfo *AllocTypeInfo, Expr *ArraySize, SourceRange DirectInitRange, Expr *Initializer, bool TypeMayContainAuto) argument
1899 CheckAllocatedType(QualType AllocType, SourceLocation Loc, SourceRange R) argument
1957 FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, bool UseGlobal, QualType AllocType, bool IsArray, MultiExprArg PlaceArgs, FunctionDecl *&OperatorNew, FunctionDecl *&OperatorDelete) argument
[all...]
H A DTreeTransform.h9499 QualType AllocType = AllocTypeInfo->getType(); local
9506 const ArrayType *ArrayT = SemaRef.Context.getAsArrayType(AllocType);
9514 AllocType = ConsArrayT->getElementType();
9519 AllocType = DepArrayT->getElementType();
9530 AllocType,

Completed in 436 milliseconds