HomeSort by relevance Sort by last modified time
    Searched refs:AllocType (Results 1 - 25 of 38) sorted by null

1 2

  /external/compiler-rt/lib/scudo/
scudo_allocator.h 27 enum AllocType : u8 {
49 void *scudoMalloc(uptr Size, AllocType Type);
50 void scudoFree(void *Ptr, AllocType Type);
51 void scudoSizedFree(void *Ptr, uptr Size, AllocType Type);
scudo_allocator.cpp 73 u8 AllocType : 2; // malloc, new, new[], or memalign
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 Type)
    [all...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/apps/
AllocPages.c 119 INTN AllocType = -1;
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/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_F.pass.cpp 40 template <class FuncType, class AllocType>
41 void test_FunctionObject(AllocType& alloc)
60 template <class FuncType, class AllocType>
61 void test_FreeFunction(AllocType& alloc)
77 template <class TargetType, class FuncType, class AllocType>
78 void test_MemFunClass(AllocType& alloc)
alloc_function.pass.cpp 28 template <class FuncType, class AllocType>
29 void test_FunctionObject(AllocType& alloc)
52 template <class FuncType, class AllocType>
53 void test_FreeFunction(AllocType& alloc)
74 template <class TargetType, class FuncType, class AllocType>
75 void test_MemFunClass(AllocType& alloc)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_F.pass.cpp 40 template <class FuncType, class AllocType>
41 void test_FunctionObject(AllocType& alloc)
60 template <class FuncType, class AllocType>
61 void test_FreeFunction(AllocType& alloc)
77 template <class TargetType, class FuncType, class AllocType>
78 void test_MemFunClass(AllocType& alloc)
alloc_function.pass.cpp 28 template <class FuncType, class AllocType>
29 void test_FunctionObject(AllocType& alloc)
52 template <class FuncType, class AllocType>
53 void test_FreeFunction(AllocType& alloc)
74 template <class TargetType, class FuncType, class AllocType>
75 void test_MemFunClass(AllocType& alloc)
  /external/compiler-rt/lib/asan/
asan_allocator.h 26 enum AllocType {
164 AllocType alloc_type);
165 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type);
167 AllocType alloc_type);
asan_report.h 61 AllocType alloc_type,
62 AllocType dealloc_type);
asan_allocator.cc 324 AllocType alloc_type, bool can_fill) {
480 AllocType alloc_type) {
512 AllocType alloc_type) {
526 ReportAllocTypeMismatch((uptr)ptr, stack, (AllocType)m->alloc_type,
527 (AllocType)alloc_type);
720 AllocType alloc_type) {
724 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type) {
729 AllocType alloc_type) {
asan_report.cc 862 AllocType alloc_type,
863 AllocType dealloc_type) {
    [all...]
  /external/skia/src/core/
SkMask.h 117 enum AllocType {
121 static uint8_t* AllocImage(size_t bytes, AllocType = kUninit_Alloc);
SkMask.cpp 38 uint8_t* SkMask::AllocImage(size_t size, AllocType at) {
  /external/skqp/include/core/
SkMask.h 117 enum AllocType {
121 static uint8_t* AllocImage(size_t bytes, AllocType = kUninit_Alloc);
  /external/skqp/src/core/
SkMask.cpp 38 uint8_t* SkMask::AllocImage(size_t size, AllocType at) {
  /device/linaro/hikey/gralloc960/
alloc_device.cpp 154 enum AllocType
182 int* pixel_stride, int* byte_stride, size_t* size, AllocType type)
263 size_t* size, AllocType type, int *internalHeight)
356 AllocType type, int* internalHeight, int stride_alignment)
439 static bool get_afbc_yuv422_8bit_stride_and_size(int width, int height, int* pixel_stride, int* byte_stride, size_t* size, AllocType type)
704 static bool get_yuv420_10bit_afbc_stride_and_size(int width, int height, int* pixel_stride, int* byte_stride, size_t* size, AllocType type, int* internalHeight)
795 static bool get_yuv422_10bit_afbc_stride_and_size(int width, int height, int* pixel_stride, int* byte_stride, size_t* size, AllocType type)
949 AllocType type = UNCOMPRESSED;
    [all...]
  /frameworks/compile/libbcc/lib/
RSKernelExpand.cpp 188 bool isStepOptSupported(llvm::Type *AllocType) {
190 llvm::PointerType *PT = llvm::dyn_cast<llvm::PointerType>(AllocType);
197 if (AllocType == VoidPtrTy) {
211 if (AllocType->getStructName().find("coerce") != llvm::StringRef::npos) {
218 if (AllocType == V2xi64Ty || AllocType == Int128Ty) {
235 llvm::Value *getStepValue(llvm::DataLayout *DL, llvm::Type *AllocType,
238 bccAssert(AllocType);
240 llvm::PointerType *PT = llvm::dyn_cast<llvm::PointerType>(AllocType);
241 if (isStepOptSupported(AllocType)) {
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
TreeTransform.h     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/NonDiscoverablePciDeviceDxe/
NonDiscoverablePciDeviceIo.c 710 EFI_ALLOCATE_TYPE AllocType;
726 AllocType = AllocateMaxAddress;
728 AllocType = AllocateAnyPages;
731 Status = gBS->AllocatePages (AllocType, MemoryType, Pages, &AllocAddress);
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 34 enum AllocType : uint8_t {
45 AllocType AllocTy;
101 static Optional<AllocFnsTy> getAllocationData(const Value *V, AllocType AllocTy,
  /hardware/google/av/codec2/vndk/
C2Buffer.cpp 494 enum AllocType : uint8_t {
503 AllocType allocType;
546 switch(c2Params.data.allocType) {
605 if (newAlloc.data.allocType == oldAlloc.data.allocType &&
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 808 milliseconds

1 2