HomeSort by relevance Sort by last modified time
    Searched defs:AllocType (Results 1 - 10 of 10) sorted by null

  /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/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);
  /external/skia/src/core/
SkMask.h 117 enum AllocType {
121 static uint8_t* AllocImage(size_t bytes, AllocType = kUninit_Alloc);
  /external/skqp/include/core/
SkMask.h 117 enum AllocType {
121 static uint8_t* AllocImage(size_t bytes, AllocType = kUninit_Alloc);
  /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...]
  /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...]
  /external/compiler-rt/lib/scudo/
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/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
TreeTransform.h     [all...]

Completed in 337 milliseconds