HomeSort by relevance Sort by last modified time
    Searched full:allocationsize (Results 51 - 75 of 253) sorted by null

1 23 4 5 6 7 8 91011

  /art/runtime/gc/space/
large_object_space_test.cc 58 ASSERT_EQ(allocation_size, los->AllocationSize(obj, nullptr));
rosalloc_space.h 63 size_t AllocationSize(mirror::Object* obj, size_t* usable_size) OVERRIDE {
malloc_space.h 64 virtual size_t AllocationSize(mirror::Object* obj, size_t* usable_size) = 0;
rosalloc_space.cc 79 // AllocationSize caused by redzones. b/12944686
region_space.h 65 size_t AllocationSize(mirror::Object* obj, size_t* usable_size) OVERRIDE
space.h 227 virtual size_t AllocationSize(mirror::Object* obj, size_t* usable_size) = 0;
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Library/
PrePiLib.h 713 Allocates the number bytes specified by AllocationSize of type EfiBootServicesData and returns a
714 pointer to the allocated buffer. If AllocationSize is 0, then a valid buffer of 0 size is
717 @param AllocationSize The number of bytes to allocate.
725 IN UINTN AllocationSize
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferViewCreateTests.cpp 142 memReqs.size, // VkDeviceSize allocationSize
vktApiBufferTests.cpp 293 memReqs.size, // VkDeviceSize allocationSize;
  /external/swiftshader/src/OpenGL/libGL/
utilities.cpp 171 int AllocateFirstFreeBits(unsigned int *bits, unsigned int allocationSize, unsigned int bitsSize)
173 ASSERT(allocationSize <= bitsSize);
175 unsigned int mask = std::numeric_limits<unsigned int>::max() >> (std::numeric_limits<unsigned int>::digits - allocationSize);
177 for(unsigned int i = 0; i < bitsSize - allocationSize + 1; i++)
  /external/compiler-rt/lib/asan/
asan_allocator.cc 616 uptr AllocationSize(uptr p) {
775 uptr usable_size = instance.AllocationSize(reinterpret_cast<uptr>(ptr));
784 return instance.AllocationSize(reinterpret_cast<uptr>(ptr));
896 return instance.AllocationSize(ptr) > 0;
902 uptr allocated_size = instance.AllocationSize(ptr);
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesTestsUtil.hpp 241 const vk::VkDeviceSize allocationSize,
249 const vk::VkDeviceSize allocationSize,
  /external/deqp/external/vulkancts/framework/vulkan/
vkNullDriver.cpp 252 if (pAllocInfo->allocationSize > 0)
254 void* const heapPtr = deMalloc((size_t)pAllocInfo->allocationSize);
277 deMemset(m_memory, 0xcd, (size_t)pAllocInfo->allocationSize);
    [all...]
  /external/vulkan-validation-layers/tests/
layer_validation_tests.cpp 645 memory_allocate_info.allocationSize = memory_requirements.size;
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 629 // care because it only overflows if allocationSize does, too, and
636 llvm::APInt allocationSize
644 sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
646 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
654 size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntifs.h     [all...]
  /external/swiftshader/src/OpenGL/compiler/
PoolAlloc.h 76 inline static size_t allocationSize(size_t size) {
  /external/swiftshader/src/OpenGL/libGLESv2/
utilities.cpp 447 int AllocateFirstFreeBits(unsigned int *bits, unsigned int allocationSize, unsigned int bitsSize)
449 ASSERT(allocationSize <= bitsSize);
451 unsigned int mask = std::numeric_limits<unsigned int>::max() >> (std::numeric_limits<unsigned int>::digits - allocationSize);
453 for(unsigned int i = 0; i < bitsSize - allocationSize + 1; i++)
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Include/
PoolAlloc.h 100 inline static size_t allocationSize(size_t size) {
  /external/libchrome/sandbox/win/src/
nt_internals.h 146 IN PLARGE_INTEGER AllocationSize OPTIONAL,
200 LARGE_INTEGER AllocationSize;
  /external/skia/src/gpu/vk/
GrVkMemory.cpp 474 size, // allocationSize
520 size, // allocationSize
  /external/vulkan-validation-layers/demos/smoke/
Meshes.cpp 513 mem_info.allocationSize = ib_mem_offset_ + ib_mem_reqs.size;
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/layer-src/core_validation/
vk_safe_struct.cpp 506 allocationSize(pInStruct->allocationSize),
517 allocationSize = src.allocationSize;
529 allocationSize = pInStruct->allocationSize;
537 allocationSize = src->allocationSize;
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/layer-src/unique_objects/
vk_safe_struct.cpp 506 allocationSize(pInStruct->allocationSize),
517 allocationSize = src.allocationSize;
529 allocationSize = pInStruct->allocationSize;
537 allocationSize = src->allocationSize;
    [all...]
  /external/vulkan-validation-layers/demos/
cube.c 767 demo->uniform_data.mem_alloc.allocationSize, 0,
    [all...]

Completed in 2208 milliseconds

1 23 4 5 6 7 8 91011