/external/skqp/src/gpu/vk/ |
D | GrVkMemory.cpp | 67 alloc->fMemory, in AllocAndBindBufferMemory() 83 GR_VK_CALL(gpu->vkInterface(), FreeMemory(gpu->device(), alloc.fMemory, nullptr)); in FreeBufferMemory() 114 alloc->fMemory, alloc->fOffset)); in AllocAndBindImageMemory() 129 GR_VK_CALL(gpu->vkInterface(), FreeMemory(gpu->device(), alloc.fMemory, nullptr)); in FreeImageMemory() 148 VkResult err = GR_VK_CALL(gpu->vkInterface(), MapMemory(gpu->device(), alloc.fMemory, in MapAlloc() 162 GR_VK_CALL(gpu->vkInterface(), UnmapMemory(gpu->device(), alloc.fMemory)); in UnmapAlloc() 184 range->memory = alloc.fMemory; in GetNonCoherentMappedMemoryRange()
|
D | GrVkImage.h | 154 fAlloc.fMemory = VK_NULL_HANDLE; in Resource()
|
D | GrVkBuffer.cpp | 107 SkASSERT(fAlloc.fMemory); in freeGPUData()
|
D | GrVkTexture.cpp | 99 SkASSERT(VK_NULL_HANDLE != info.fImage && VK_NULL_HANDLE != info.fAlloc.fMemory); in MakeWrappedTexture()
|
D | GrVkAMDMemoryAllocator.cpp | 177 alloc->fMemory = vmaInfo.deviceMemory; in getAllocInfo()
|
D | GrVkTextureRenderTarget.cpp | 211 SkASSERT(VK_NULL_HANDLE != info.fImage && VK_NULL_HANDLE != info.fAlloc.fMemory); in MakeWrappedTextureRenderTarget()
|
D | GrVkGpu.cpp | 1038 if (VK_NULL_HANDLE == info.fImage || VK_NULL_HANDLE == info.fAlloc.fMemory) { in check_image_info() 1699 if (backend.fImage && backend.fAlloc.fMemory) { in isTestingOnlyBackendTexture()
|
/external/skia/src/gpu/vk/ |
D | GrVkMemory.cpp | 66 GR_VK_CALL_RESULT(gpu, err, BindBufferMemory(gpu->device(), buffer, alloc->fMemory, in AllocAndBindBufferMemory() 82 GR_VK_CALL(gpu->vkInterface(), FreeMemory(gpu->device(), alloc.fMemory, nullptr)); in FreeBufferMemory() 118 GR_VK_CALL_RESULT(gpu, err, BindImageMemory(gpu->device(), image, alloc->fMemory, in AllocAndBindImageMemory() 134 GR_VK_CALL(gpu->vkInterface(), FreeMemory(gpu->device(), alloc.fMemory, nullptr)); in FreeImageMemory() 154 GR_VK_CALL_RESULT(gpu, err, MapMemory(gpu->device(), alloc.fMemory, alloc.fOffset, alloc.fSize, in MapAlloc() 167 GR_VK_CALL(gpu->vkInterface(), UnmapMemory(gpu->device(), alloc.fMemory)); in UnmapAlloc() 189 range->memory = alloc.fMemory; in GetNonCoherentMappedMemoryRange()
|
D | GrVkImage.h | 39 SkASSERT(VK_NULL_HANDLE != info.fAlloc.fMemory); in fInfo() 172 fAlloc.fMemory = VK_NULL_HANDLE; in Resource()
|
D | GrVkBuffer.cpp | 109 SkASSERT(fAlloc.fMemory); in freeGPUData()
|
D | GrVkAMDMemoryAllocator.cpp | 186 alloc->fMemory = vmaInfo.deviceMemory; in getAllocInfo()
|
D | GrVkTexture.cpp | 112 (kBorrow_GrWrapOwnership == wrapOwnership || VK_NULL_HANDLE != info.fAlloc.fMemory)); in MakeWrappedTexture()
|
D | GrVkTextureRenderTarget.cpp | 219 (kBorrow_GrWrapOwnership == wrapOwnership || VK_NULL_HANDLE != info.fAlloc.fMemory)); in MakeWrappedTextureRenderTarget()
|
D | GrVkGpu.cpp | 674 if (VK_NULL_HANDLE == alloc.fMemory) { in uploadTexDataLinear() 1161 if (VK_NULL_HANDLE == info.fAlloc.fMemory && needsAllocation) { in check_image_info() 2022 if (backend.fImage && backend.fAlloc.fMemory) { in isTestingOnlyBackendTexture()
|
/external/skqp/include/gpu/vk/ |
D | GrVkTypes.h | 30 : fMemory(VK_NULL_HANDLE) in GrVkAlloc() 38 : fMemory(memory) in GrVkAlloc() 45 VkDeviceMemory fMemory; // can be VK_NULL_HANDLE iff is an RT and is borrowed member 57 return fMemory == that.fMemory && fOffset == that.fOffset && fSize == that.fSize &&
|
/external/skia/include/gpu/vk/ |
D | GrVkTypes.h | 30 : fMemory(VK_NULL_HANDLE) in GrVkAlloc() 38 : fMemory(memory) in GrVkAlloc() 45 VkDeviceMemory fMemory; // can be VK_NULL_HANDLE iff is an RT and is borrowed member 57 return fMemory == that.fMemory && fOffset == that.fOffset && fSize == that.fSize &&
|
/external/dng_sdk/source/ |
D | dng_simple_image.cpp | 34 , fMemory () in dng_simple_image() 42 fMemory.Reset (allocator.Allocate (bytes)); in dng_simple_image() 44 fBuffer = dng_pixel_buffer (bounds, 0, planes, pixelType, pcInterleaved, fMemory->Buffer ()); in dng_simple_image()
|
D | dng_simple_image.h | 36 AutoPtr<dng_memory_block> fMemory; variable
|
/external/skia/src/sksl/ |
D | SkSLInterpreter.h | 222 fMemory = (Vector*) GrAlignTo((size_t) fBackingStore, alignof(Vector)); in Interpreter() 223 fRegisters = fMemory + MEMORY_SIZE; in Interpreter() 232 fMemory[fCode->getGlobalSlotCount() + i].fFloat = VectorF(uniforms[i]); in setUniforms() 250 Vector* stack = fMemory + MEMORY_SIZE; in run() 256 Context context(fMemory, stack, condStack, maskStack, loopStack, continueStack); in run() 284 Vector* stack = fMemory + MEMORY_SIZE; 292 Context context(fMemory, stack, condStack, maskStack, loopStack, continueStack); 359 : fMemory(memory) in Context() 366 Vector* fMemory; member 638 SkASSERT(context.fStack + address >= fMemory && \ [all …]
|
/external/skqp/tests/ |
D | VkHardwareBufferTest.cpp | 398 if (fMemory != VK_NULL_HANDLE) { in releaseImage() 399 fVkFreeMemory(fDevice, fMemory, nullptr); in releaseImage() 400 fMemory = VK_NULL_HANDLE; in releaseImage() 486 VkDeviceMemory fMemory = VK_NULL_HANDLE; member in VulkanTestHelper 776 err = fVkAllocateMemory(fDevice, &allocInfo, nullptr, &fMemory); in importHardwareBuffer() 786 bindImageInfo.memory = fMemory; in importHardwareBuffer() 796 outImageInfo->fAlloc = GrVkAlloc(fMemory, 0, hwbProps.allocationSize, 0); in importHardwareBuffer()
|
/external/skia/tests/ |
D | VkHardwareBufferTest.cpp | 400 if (fMemory != VK_NULL_HANDLE) { in releaseImage() 401 fVkFreeMemory(fDevice, fMemory, nullptr); in releaseImage() 402 fMemory = VK_NULL_HANDLE; in releaseImage() 491 VkDeviceMemory fMemory = VK_NULL_HANDLE; member in VulkanTestHelper 766 err = fVkAllocateMemory(fDevice, &allocInfo, nullptr, &fMemory); in importHardwareBuffer() 776 bindImageInfo.memory = fMemory; in importHardwareBuffer() 786 outImageInfo->fAlloc = GrVkAlloc(fMemory, 0, hwbProps.allocationSize, 0); in importHardwareBuffer()
|
/external/skia/src/gpu/ |
D | GrAHardwareBufferUtils.cpp | 277 , fMemory(memory) in VulkanCleanupHelper() 282 fFreeMemory(fDevice, fMemory, nullptr); in ~VulkanCleanupHelper() 287 VkDeviceMemory fMemory; member in GrAHardwareBufferUtils::VulkanCleanupHelper
|
/external/skqp/src/gpu/ |
D | GrAHardwareBufferImageGenerator.cpp | 132 , fMemory(memory) in VulkanCleanupHelper() 137 fFreeMemory(fDevice, fMemory, nullptr); in ~VulkanCleanupHelper() 142 VkDeviceMemory fMemory; member in VulkanCleanupHelper
|
/external/skqp/src/core/ |
D | SkRemoteGlyphCache.cpp | 118 : fMemory(memory), fMemorySize(memorySize) {} in Deserializer() 152 auto* result = fMemory + padded; in ensureAtLeast() 158 const volatile char* fMemory; member in Deserializer
|
/external/skia/src/core/ |
D | SkRemoteGlyphCache.cpp | 125 : fMemory(memory), fMemorySize(memorySize) {} in Deserializer() 166 auto* result = fMemory + padded; in ensureAtLeast() 172 const volatile char* fMemory; member in Deserializer
|