/third_party/icu/icu4c/source/common/ |
H A D | cmemory.cpp | 34 static UMemAllocFn *pAlloc; variable 55 if (pAlloc) { in uprv_malloc() 56 return (*pAlloc)(pContext, s); in uprv_malloc() 126 pAlloc = a; in u_setMemoryFunctions() 134 pAlloc = NULL; in cmemory_cleanup()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | cmemory.cpp | 34 static UMemAllocFn *pAlloc; variable 55 if (pAlloc) { in uprv_malloc() 56 return (*pAlloc)(pContext, s); in uprv_malloc() 126 pAlloc = a; in u_setMemoryFunctions() 134 pAlloc = nullptr; in cmemory_cleanup()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | cmemory.cpp | 34 static UMemAllocFn *pAlloc; variable 55 if (pAlloc) { in uprv_malloc() 56 return (*pAlloc)(pContext, s); in uprv_malloc() 126 pAlloc = a; in u_setMemoryFunctions() 134 pAlloc = NULL; in cmemory_cleanup()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineMaxVaryingsTests.cpp | 888 Move<VkBuffer> createBufferAndBindMemory (Context& context, VkDeviceSize size, VkBufferUsageFlags usage, de::MovePtr<Allocation>* pAlloc) in createBufferAndBindMemory() argument 908 *pAlloc = context.getDefaultAllocator().allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible); in createBufferAndBindMemory() 909 VK_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); in createBufferAndBindMemory()
|
H A D | vktPipelineCacheTests.cpp | 135 Move<VkBuffer> createBufferAndBindMemory (Context& context, VkDeviceSize size, VkBufferUsageFlags usage, de::MovePtr<Allocation>* pAlloc) in createBufferAndBindMemory() argument 155 *pAlloc = context.getDefaultAllocator().allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible); in createBufferAndBindMemory() 156 VK_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); in createBufferAndBindMemory() 167 de::details::MovePtr<Allocation>* pAlloc) in createImage2DAndBindMemory() 194 *pAlloc = context.getDefaultAllocator().allocate(getImageMemoryRequirements(vk, vkDevice, *image), MemoryRequirement::Any); in createImage2DAndBindMemory() 195 VK_CHECK(vk.bindImageMemory(vkDevice, *image, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); in createImage2DAndBindMemory() 161 createImage2DAndBindMemory(Context& context, VkFormat format, deUint32 width, deUint32 height, VkImageUsageFlags usage, VkSampleCountFlagBits sampleCount, de::details::MovePtr<Allocation>* pAlloc) createImage2DAndBindMemory() argument
|
H A D | vktPipelineDepthRangeUnrestrictedTests.cpp | 301 Move<VkBuffer> createBufferAndBindMemory (Context& context, VkDeviceSize size, VkBufferUsageFlags usage, de::MovePtr<Allocation>* pAlloc) 321 *pAlloc = context.getDefaultAllocator().allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible); 322 VK_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); 333 de::details::MovePtr<Allocation>* pAlloc) in createImage2DAndBindMemory() 360 *pAlloc = context.getDefaultAllocator().allocate(getImageMemoryRequirements(vk, vkDevice, *image), MemoryRequirement::Any); in createImage2DAndBindMemory() 361 VK_CHECK(vk.bindImageMemory(vkDevice, *image, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); in createImage2DAndBindMemory() 327 createImage2DAndBindMemory(Context& context, VkFormat format, deUint32 width, deUint32 height, VkImageUsageFlags usage, VkSampleCountFlagBits sampleCount, de::details::MovePtr<Allocation>* pAlloc) createImage2DAndBindMemory() argument
|
H A D | vktPipelineBlendOperationAdvancedTests.cpp | 914 Move<VkBuffer> createBufferAndBindMemory (Context& context, VkDeviceSize size, VkBufferUsageFlags usage, de::MovePtr<Allocation>* pAlloc) in createBufferAndBindMemory() argument 934 *pAlloc = context.getDefaultAllocator().allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible); in createBufferAndBindMemory() 935 VK_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); in createBufferAndBindMemory() 946 de::details::MovePtr<Allocation>* pAlloc) in createImage2DAndBindMemory() 973 *pAlloc = context.getDefaultAllocator().allocate(getImageMemoryRequirements(vk, vkDevice, *image), MemoryRequirement::Any); in createImage2DAndBindMemory() 974 VK_CHECK(vk.bindImageMemory(vkDevice, *image, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); in createImage2DAndBindMemory() 940 createImage2DAndBindMemory(Context& context, VkFormat format, deUint32 width, deUint32 height, VkImageUsageFlags usage, VkSampleCountFlagBits sampleCount, de::details::MovePtr<Allocation>* pAlloc) createImage2DAndBindMemory() argument
|
H A D | vktPipelineTimestampTests.cpp | 471 de::MovePtr<Allocation>* pAlloc); 478 de::MovePtr<Allocation>* pAlloc); 715 Move<VkBuffer> TimestampTestInstance::createBufferAndBindMemory (VkDeviceSize size, VkBufferUsageFlags usage, de::MovePtr<Allocation>* pAlloc) 735 DE_ASSERT(pAlloc); 736 *pAlloc = vertexBufferAlloc; 746 de::details::MovePtr<Allocation>* pAlloc) 791 DE_ASSERT(pAlloc); 792 *pAlloc = colorImageAlloc;
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineMaxVaryingsTests.cpp | 892 Move<VkBuffer> createBufferAndBindMemory (Context& context, VkDeviceSize size, VkBufferUsageFlags usage, de::MovePtr<Allocation>* pAlloc) in createBufferAndBindMemory() argument 912 *pAlloc = context.getDefaultAllocator().allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible); in createBufferAndBindMemory() 913 VK_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); in createBufferAndBindMemory()
|
H A D | vktPipelineCacheTests.cpp | 144 Move<VkBuffer> createBufferAndBindMemory (Context& context, VkDeviceSize size, VkBufferUsageFlags usage, de::MovePtr<Allocation>* pAlloc) in createBufferAndBindMemory() argument 164 *pAlloc = context.getDefaultAllocator().allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible); in createBufferAndBindMemory() 165 VK_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); in createBufferAndBindMemory() 176 de::details::MovePtr<Allocation>* pAlloc) in createImage2DAndBindMemory() 203 *pAlloc = context.getDefaultAllocator().allocate(getImageMemoryRequirements(vk, vkDevice, *image), MemoryRequirement::Any); in createImage2DAndBindMemory() 204 VK_CHECK(vk.bindImageMemory(vkDevice, *image, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); in createImage2DAndBindMemory() 170 createImage2DAndBindMemory(Context& context, VkFormat format, deUint32 width, deUint32 height, VkImageUsageFlags usage, VkSampleCountFlagBits sampleCount, de::details::MovePtr<Allocation>* pAlloc) createImage2DAndBindMemory() argument
|
H A D | vktPipelineDepthRangeUnrestrictedTests.cpp | 308 Move<VkBuffer> createBufferAndBindMemory (Context& context, VkDeviceSize size, VkBufferUsageFlags usage, de::MovePtr<Allocation>* pAlloc) 328 *pAlloc = context.getDefaultAllocator().allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible); 329 VK_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); 340 de::details::MovePtr<Allocation>* pAlloc) in createImage2DAndBindMemory() 367 *pAlloc = context.getDefaultAllocator().allocate(getImageMemoryRequirements(vk, vkDevice, *image), MemoryRequirement::Any); in createImage2DAndBindMemory() 368 VK_CHECK(vk.bindImageMemory(vkDevice, *image, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); in createImage2DAndBindMemory() 334 createImage2DAndBindMemory(Context& context, VkFormat format, deUint32 width, deUint32 height, VkImageUsageFlags usage, VkSampleCountFlagBits sampleCount, de::details::MovePtr<Allocation>* pAlloc) createImage2DAndBindMemory() argument
|
H A D | vktPipelineBlendOperationAdvancedTests.cpp | 919 Move<VkBuffer> createBufferAndBindMemory (Context& context, VkDeviceSize size, VkBufferUsageFlags usage, de::MovePtr<Allocation>* pAlloc) in createBufferAndBindMemory() argument 939 *pAlloc = context.getDefaultAllocator().allocate(getBufferMemoryRequirements(vk, vkDevice, *vertexBuffer), MemoryRequirement::HostVisible); in createBufferAndBindMemory() 940 VK_CHECK(vk.bindBufferMemory(vkDevice, *vertexBuffer, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); in createBufferAndBindMemory() 951 de::details::MovePtr<Allocation>* pAlloc) in createImage2DAndBindMemory() 978 *pAlloc = context.getDefaultAllocator().allocate(getImageMemoryRequirements(vk, vkDevice, *image), MemoryRequirement::Any); in createImage2DAndBindMemory() 979 VK_CHECK(vk.bindImageMemory(vkDevice, *image, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); in createImage2DAndBindMemory() 945 createImage2DAndBindMemory(Context& context, VkFormat format, deUint32 width, deUint32 height, VkImageUsageFlags usage, VkSampleCountFlagBits sampleCount, de::details::MovePtr<Allocation>* pAlloc) createImage2DAndBindMemory() argument
|
H A D | vktPipelineTimestampTests.cpp | 497 de::MovePtr<Allocation>* pAlloc); 504 de::MovePtr<Allocation>* pAlloc); 720 Move<VkBuffer> TimestampTestInstance::createBufferAndBindMemory (VkDeviceSize size, VkBufferUsageFlags usage, de::MovePtr<Allocation>* pAlloc) 744 DE_ASSERT(pAlloc); 745 *pAlloc = vertexBufferAlloc; 755 de::details::MovePtr<Allocation>* pAlloc) 803 DE_ASSERT(pAlloc); 804 *pAlloc = colorImageAlloc;
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/wsi/ |
H A D | vktWsiMaintenance1Tests.cpp | 515 Move<VkBuffer> createBufferAndBindMemory (const DeviceHelper& devHelper, SimpleAllocator& allocator, const tcu::UVec4 color, deUint32 count, de::MovePtr<Allocation>* pAlloc) in createBufferAndBindMemory() argument 535 *pAlloc = allocator.allocate(getBufferMemoryRequirements(vkd, device, *buffer), MemoryRequirement::HostVisible); in createBufferAndBindMemory() 536 VK_CHECK(vkd.bindBufferMemory(device, *buffer, (*pAlloc)->getMemory(), (*pAlloc)->getOffset())); in createBufferAndBindMemory() 541 deMemcpy((*pAlloc)->getHostPtr(), colors.data(), colors.size() * sizeof(colors[0])); in createBufferAndBindMemory() 542 flushAlloc(vkd, device, **pAlloc); in createBufferAndBindMemory()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/ |
H A D | vktBindingDescriptorBufferTests.cpp | 4109 Allocation* pAlloc = nullptr; 4118 pAlloc = descriptorBuffer.alloc.get(); 4126 pAlloc = m_descriptorStagingBuffer.alloc.get(); 4201 flushAlloc(*m_deviceInterface, *m_device, *pAlloc);
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/ |
H A D | vktBindingDescriptorBufferTests.cpp | 4080 Allocation* pAlloc = nullptr; 4089 pAlloc = descriptorBuffer.alloc.get(); 4097 pAlloc = m_descriptorStagingBuffer.alloc.get(); 4172 flushAlloc(*m_deviceInterface, *m_device, *pAlloc);
|
/third_party/skia/third_party/vulkanmemoryallocator/include/ |
H A D | vk_mem_alloc.h | 14326 VmaAllocation_T* const pAlloc = srcSuballocIt->hAllocation; in Defragment() local 14327 const VkDeviceSize srcAllocAlignment = pAlloc->GetAlignment(); in Defragment()
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | 82286 stat4ValueFromExpr( Parse *pParse, Expr *pExpr, u8 affinity, struct ValueNewStat4Ctx *pAlloc, sqlite3_value **ppVal ) global() argument 216524 u8 *pAlloc = 0; global() local [all...] |