Home
last modified time | relevance | path

Searched refs:dealloc (Results 1 - 24 of 24) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
H A DDescriptorSetAllocator.cpp126 for (const Deallocation& dealloc : mPendingDeallocations.IterateUpTo(completedSerial)) { in FinishDeallocation()
127 ASSERT(dealloc.poolIndex < mDescriptorPools.size()); in FinishDeallocation()
129 auto& freeSetIndices = mDescriptorPools[dealloc.poolIndex].freeSetIndices; in FinishDeallocation()
131 mAvailableDescriptorPoolIndices.emplace_back(dealloc.poolIndex); in FinishDeallocation()
133 freeSetIndices.emplace_back(dealloc.setIndex); in FinishDeallocation()
/third_party/glslang/glslang/Include/
H A Darrays.h86 virtual ~TSmallArrayVector() { dealloc(); } in ~TSmallArrayVector()
145 dealloc(); in pop_front()
154 dealloc(); in pop_back()
209 void dealloc() in dealloc() function
/third_party/mesa3d/src/util/tests/vma/
H A Dvma_random_test.cpp93 else if (action < 374) dealloc(); in test()
150 void dealloc() in dealloc() function
217 dealloc(); in empty()
/third_party/python/Include/cpython/
H A Dobject.h475 PyAPI_FUNC(int) _PyTrash_cond(PyObject *op, destructor dealloc);
495 #define Py_TRASHCAN_BEGIN(op, dealloc) \
497 _PyTrash_cond(_PyObject_CAST(op), (destructor)dealloc))
/third_party/python/Lib/test/
H A D_testcppext.cpp142 static void dealloc(PyObject* o) { in dealloc() function in VirtualPyObject
156 {Py_tp_free, (void*)VirtualPyObject::dealloc},
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dwpas_kay.c419 goto dealloc; in ieee802_1x_create_preshared_mka()
431 dealloc: in ieee802_1x_create_preshared_mka()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dwpas_kay.c419 goto dealloc; in ieee802_1x_create_preshared_mka()
431 dealloc: in ieee802_1x_create_preshared_mka()
/third_party/lwip/src/apps/lwiperf/
H A Dlwiperf.c822 lwiperf_state_base_t *i, *dealloc, *last = NULL; in lwiperf_abort() local
828 dealloc = i; in lwiperf_abort()
833 LWIPERF_FREE(lwiperf_state_tcp_t, dealloc); /* @todo: type? */ in lwiperf_abort()
/third_party/lwip/src/include/lwip/priv/
H A Daltcp_priv.h115 altcp_dealloc_fn dealloc; member
/third_party/lwip/src/core/
H A Daltcp.c152 if (conn->fns && conn->fns->dealloc) { in altcp_free()
153 conn->fns->dealloc(conn); in altcp_free()
/third_party/protobuf/python/google/protobuf/pyext/
H A Dextension_dict.cc322 void dealloc(PyObject* pself) { in dealloc() function
376 (destructor)extension_dict::dealloc, // tp_dealloc
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dwpa_auth_kay.c502 goto dealloc; in ieee802_1x_create_preshared_mka_hapd()
514 dealloc: in ieee802_1x_create_preshared_mka_hapd()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dwpa_auth_kay.c502 goto dealloc; in ieee802_1x_create_preshared_mka_hapd()
514 dealloc: in ieee802_1x_create_preshared_mka_hapd()
/third_party/python/Objects/
H A Dobject.c2264 destructor dealloc = Py_TYPE(op)->tp_dealloc; in _PyTrash_thread_destroy_chain() local
2276 (*dealloc)(op); in _PyTrash_thread_destroy_chain()
2310 _PyTrash_cond(PyObject *op, destructor dealloc) in _PyTrash_cond() argument
2312 return Py_TYPE(op)->tp_dealloc == dealloc; in _PyTrash_cond()
2376 destructor dealloc = type->tp_dealloc; in _Py_Dealloc() local
2390 (*dealloc)(op); in _Py_Dealloc()
2404 // It can happen if dealloc() normalized the current exception. in _Py_Dealloc()
/third_party/lwip/src/apps/mdns/
H A Dmdns.c1867 goto dealloc; in mdns_recv()
1872 goto dealloc; in mdns_recv()
1878 goto dealloc; in mdns_recv()
1913 dealloc: in mdns_recv()
/third_party/libbpf/src/
H A Dlibbpf_internal.h210 void (*dealloc)(struct bpf_link *link); member
H A Dusdt.c1011 link->link.dealloc = &bpf_link_usdt_dealloc; in usdt_manager_attach_usdt()
H A Dlibbpf.c10418 if (link->dealloc)
10419 link->dealloc(link);
10591 link->link.dealloc = &bpf_link_perf_dealloc;
/third_party/rust/crates/cxx/gen/src/include/
H A Dcxx.h724 static void dealloc(T *) noexcept;
730 dealloc(this->ptr);
/third_party/rust/crates/cxx/gen/cmd/src/gen/include/
H A Dcxx.h724 static void dealloc(T *) noexcept;
730 dealloc(this->ptr);
/third_party/rust/crates/cxx/gen/build/src/gen/include/
H A Dcxx.h724 static void dealloc(T *) noexcept;
730 dealloc(this->ptr);
/third_party/rust/crates/cxx/include/
H A Dcxx.h724 static void dealloc(T *) noexcept;
730 dealloc(this->ptr);
/third_party/rust/crates/cxx/gen/lib/src/gen/include/
H A Dcxx.h724 static void dealloc(T *) noexcept;
730 dealloc(this->ptr);
/third_party/python/Python/
H A Dceval.c59 destructor dealloc = Py_TYPE(op)->tp_dealloc; \
60 (*dealloc)(op); \
78 #define _Py_DECREF_SPECIALIZED(arg, dealloc) \
82 destructor d = (destructor)(dealloc); \

Completed in 52 milliseconds