Searched refs:deallocator (Results 1 – 25 of 26) sorted by relevance
12
/external/libxml2/ |
D | list.c | 188 xmlListCreate(xmlListDeallocator deallocator, xmlListDataCompare compare) in xmlListCreate() argument 211 if (deallocator != NULL) in xmlListCreate() 212 l->linkDeallocator = deallocator; in xmlListCreate()
|
/external/libxml2/include/libxml/ |
D | list.h | 56 xmlListCreate (xmlListDeallocator deallocator,
|
/external/python/cpython3/Doc/c-api/ |
D | gcsupport.rst | 72 Similarly, the deallocator for the object must conform to a similar pair of 91 this object to add it back to the set of tracked objects. The deallocator
|
D | intro.rst | 210 the reference count becomes zero and then cause the object's deallocator to be 211 called. The deallocator is a function pointer contained in the object's type 212 structure. The type-specific deallocator takes care of decrementing the
|
D | typeobj.rst | 181 permissible to call the object deallocator directly instead of via 182 :c:member:`~PyTypeObject.tp_free`. The object deallocator should be the one used to allocate the 945 deallocator suitable to match :c:func:`PyType_GenericAlloc` and the value of the
|
/external/python/cpython2/Doc/c-api/ |
D | gcsupport.rst | 80 Similarly, the deallocator for the object must conform to a similar pair of 99 this object to add it back to the set of tracked objects. The deallocator
|
D | intro.rst | 133 the reference count becomes zero and then cause the object's deallocator to be 134 called. The deallocator is a function pointer contained in the object's type 135 structure. The type-specific deallocator takes care of decrementing the
|
D | typeobj.rst | 188 permissible to call the object deallocator directly instead of via 189 :c:member:`~PyTypeObject.tp_free`. The object deallocator should be the one used to allocate the 1042 deallocator suitable to match :c:func:`PyType_GenericAlloc` and the value of the
|
/external/libxml2/os400/libxmlrpg/ |
D | list.rpgle | 55 d deallocator value like(xmlListDeallocator)
|
D | parser.rpgle | 65 d free like(xmlParserInputDeallocate) base deallocator
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b4.rst | 178 Fixed possible crash in _io.TextIOWrapper deallocator when the garbage
|
D | 3.5.3rc1.rst | 576 Fixed possible crash in _io.TextIOWrapper deallocator when the garbage
|
D | 3.7.0a1.rst | 3962 Fixed possible crash in _io.TextIOWrapper deallocator when the garbage
|
/external/python/cpython3/Doc/extending/ |
D | newtypes.rst | 81 One important requirement of the deallocator function is that it leaves any 86 which a deallocator performs which may cause additional Python code to be 120 There are limitations to what you can safely do in a deallocator function.
|
D | newtypes_tutorial.rst | 762 The deallocator ``Custom_dealloc`` may call arbitrary code when clearing 766 Here is our reimplemented deallocator using :c:func:`PyObject_GC_UnTrack`
|
/external/tensorflow/tensorflow/c/ |
D | c_api.cc | 145 void (*deallocator)(void* data, size_t len, void* arg), in TF_ManagedBuffer() 149 deallocator_(deallocator), in TF_ManagedBuffer() 206 void (*deallocator)(void* data, size_t len, void* arg), in TF_NewTensor() 229 deallocator(data, len, deallocator_arg); in TF_NewTensor() 231 buf = new TF_ManagedBuffer(data, len, deallocator, deallocator_arg); in TF_NewTensor()
|
D | c_api.h | 236 void (*deallocator)(void* data, size_t len, void* arg),
|
D | c_api_test.cc | 2290 auto deallocator = [](void* data, size_t len, void* arg) {}; in TEST_F() local 2292 sizeof(encoded), deallocator, nullptr), in TEST_F()
|
/external/clang/test/Analysis/ |
D | DeallocUseAfterFreeErrors.m | 316 // inlined the call to its super deallocator.
|
/external/python/cpython2/Doc/extending/ |
D | newtypes.rst | 663 deallocator, where there is the possibility that the initialization of these 797 before clearing members. Here is reimplemented deallocator which uses 986 One important requirement of the deallocator function is that it leaves any 991 which a deallocator performs which may cause additional Python code to be
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.13rc1.rst | 234 Fixed possible crash in _io.TextIOWrapper deallocator when the garbage
|
D | 2.7.3rc1.rst | 202 caught in a reference cycle, and the instance's deallocator calls one of the
|
D | 2.7.4rc1.rst | 352 in multi-thread programs when several long deallocator chains ran
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.2.rst | 601 without having been explicitly closed. While the deallocator for such
|
/external/python/cpython3/Misc/ |
D | HISTORY | 6553 sporadic crashes in multi-thread programs when several long deallocator chains 8497 deallocator calls one of the methods on the type (e.g. when subclassing
|
12