/third_party/glfw/tests/ |
H A D | allocator.c | 69 static void deallocate(void* block, void* user) in deallocate() function 77 printf("%s: deallocate %zu bytes (current %zu maximum %zu total %zu)\n", in deallocate() 110 .deallocate = deallocate, in main()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/ |
H A D | exception_safety_testing_test.cc | 382 int_alloc.deallocate(ip, 1); in TEST() 384 int_alloc.deallocate(i_array, 2); in TEST() 388 tv_alloc.deallocate(ptr, 1); in TEST() 390 tv_alloc.deallocate(tv_array, 2); in TEST() 400 nothrow_alloc.deallocate(ptr, 1); in TEST() 417 int_alloc.deallocate(ip, 1); in TEST() 434 int_alloc.deallocate(ip, 1); in TEST() 445 int_alloc.deallocate(ip, 1); in TEST() 462 nothrow_alloc.deallocate(ptr, 1); in TEST() 494 a3.deallocate(i in TEST() [all...] |
/third_party/json/tests/src/ |
H A D | unit-allocator.cpp | 73 void deallocate(T* p, std::size_t n) in deallocate() function 81 std::allocator<T>::deallocate(p, n); in deallocate() 110 alloc.deallocate(p, 1); in my_allocator_clean_up()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | PoolAlloc.h | 72 // libCStd on some platforms have a different allocate/deallocate interface. 77 void deallocate(void *, size_type) {} in deallocate() function in pool_allocator 87 void deallocate(pointer, size_type) {} in deallocate() function in pool_allocator
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | ExecutableMemory.cpp | 43 #undef deallocate macro 251 void deallocate(void *memory) in deallocate() function 398 deallocate(memory); in deallocateMemoryPages() 413 deallocate(memory); in deallocateMemoryPages()
|
/third_party/cJSON/tests/ |
H A D | common.h | 36 global_hooks.deallocate(item->valuestring); in reset() 40 global_hooks.deallocate(item->string); in reset()
|
H A D | parse_string.c | 56 global_hooks.deallocate(item->valuestring); in assert_parse_string()
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
H A D | Memory.cpp | 36 #undef deallocate macro 102 void deallocate(void *memory) in deallocate() function
|
H A D | Memory.hpp | 26 void deallocate(void *memory);
|
H A D | Resource.cpp | 35 deallocate(buffer); in ~Resource()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | counting_allocator.h | 63 void deallocate(pointer p, size_type n) { in deallocate() function in absl::container_internal::CountingAllocator 65 AllocatorTraits::deallocate(allocator, p, n); in deallocate()
|
H A D | container_memory_test.cc | 73 void deallocate(T* p, std::size_t n) { in deallocate() function 75 return std::allocator<T>().deallocate(p, n); in deallocate() 96 std::allocator_traits<Alloc>::deallocate(*alloc(), ptr_, 1);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiMemoryRequirementInvarianceTests.cpp | 69 virtual void deallocate (Context& context) = 0; 79 virtual void deallocate (Context& context); 133 void BufferAllocator::deallocate (Context& context) in deallocate() function in vkt::api::BufferAllocator 159 virtual void deallocate (Context& context); 219 void ImageAllocator::deallocate (Context& context) in deallocate() function in vkt::api::ImageAllocator 630 objs[i]->deallocate(m_context); in iterate() 685 objs[order[i]]->deallocate(m_context); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/ |
H A D | vktApiMemoryRequirementInvarianceTests.cpp | 69 virtual void deallocate (Context& context) = 0; 79 virtual void deallocate (Context& context); 127 void BufferAllocator::deallocate (Context& context) in deallocate() function in vkt::api::BufferAllocator 153 virtual void deallocate (Context& context); 213 void ImageAllocator::deallocate (Context& context) in deallocate() function in vkt::api::ImageAllocator 598 objs[i]->deallocate(m_context); in iterate() 653 objs[order[i]]->deallocate(m_context); in iterate()
|
/third_party/cJSON/ |
H A D | cJSON.c | 171 void (CJSON_CDECL *deallocate)(void *pointer); member 227 global_hooks.deallocate = free; in cJSON_InitHooks() 238 global_hooks.deallocate = free; in cJSON_InitHooks() 241 global_hooks.deallocate = hooks->free_fn; in cJSON_InitHooks() 246 if ((global_hooks.allocate == malloc) && (global_hooks.deallocate == free)) in cJSON_InitHooks() 277 global_hooks.deallocate(item->valuestring); in cJSON_Delete() 282 global_hooks.deallocate(item->string); in cJSON_Delete() 289 global_hooks.deallocate(item); in cJSON_Delete() 661 p->hooks.deallocate(p->buffer); in ensure() 674 p->hooks.deallocate( in ensure() [all...] |
/third_party/node/deps/v8/src/zone/ |
H A D | zone-allocator.h | 61 void deallocate(T* p, size_t length) { zone_->DeleteArray<T>(p, length); } in deallocate() function in v8::internal::ZoneAllocator 121 void deallocate(T* p, size_t n) { in deallocate() function in v8::internal::RecyclingZoneAllocator
|
/third_party/json/docs/examples/ |
H A D | get_allocator.cpp | 17 traits_t::deallocate(alloc, j, 1); in main()
|
/third_party/glslang/glslang/Include/ |
H A D | PoolAlloc.h | 185 // There is no deallocate. The point of this class is that 187 // of use is to simultaneously deallocate everything at once 297 void deallocate(void*, size_type) { } in deallocate() function in glslang::pool_allocator 298 void deallocate(pointer, size_type) { } in deallocate() function in glslang::pool_allocator
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | PoolAlloc.h | 157 // There is no deallocate. The point of this class is that 159 // of use is to simultaneously deallocate everything at once 278 // libCStd on some platforms have a different allocate/deallocate interface. 287 void deallocate(void*, size_type) {} in deallocate() function in pool_allocator 295 void deallocate(pointer, size_type) {} in deallocate() function in pool_allocator
|
/third_party/skia/third_party/externals/dawn/src/common/ |
H A D | StackContainer.h | 115 void deallocate(pointer p, size_type n) { in deallocate() function in StackAllocator 119 std::allocator<T>::deallocate(p, n); in deallocate()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_memorypool.h | 79 void deallocate(void *p, size_t n) { in deallocate() function 81 //MemoryPool::instance().deallocate(p, n * sizeof(T), alignof(T)); in deallocate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.h | 77 /// Should deallocate target memory. 78 virtual Error deallocate() = 0;
|
/third_party/glfw/src/ |
H A D | init.c | 299 _glfw.allocator.deallocate(block, _glfw.allocator.user); in _glfw_free() 399 _glfw.allocator.deallocate = defaultDeallocate; in glfwInit() 475 if (allocator->allocate && allocator->reallocate && allocator->deallocate) in glfwInitAllocator()
|
/third_party/ltp/testcases/kernel/device-drivers/usb/tusb/ |
H A D | st_tusb.h | 34 int (*deallocate)(struct usb_device *); member
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceBitVector.h | 344 Alloc.deallocate(Bits, Capacity); 678 Alloc.deallocate(Bits, OldCapacity); 688 Alloc.deallocate(Bits, Capacity); 773 Alloc.deallocate(Bits, OldCapacity);
|