Home
last modified time | relevance | path

Searched refs:tp_free (Results 1 – 25 of 91) sorted by relevance

1234

/external/python/cpython2/Modules/
Ditertoolsmodule.c60 Py_TYPE(gbo)->tp_free(gbo); in groupby_dealloc()
743 Py_TYPE(lz)->tp_free(lz); in cycle_dealloc()
888 Py_TYPE(lz)->tp_free(lz); in dropwhile_dealloc()
1032 Py_TYPE(lz)->tp_free(lz); in takewhile_dealloc()
1222 Py_TYPE(lz)->tp_free(lz); in islice_dealloc()
1373 Py_TYPE(lz)->tp_free(lz); in starmap_dealloc()
1518 Py_TYPE(lz)->tp_free(lz); in imap_dealloc()
1695 Py_TYPE(lz)->tp_free(lz); in chain_dealloc()
1906 Py_TYPE(lz)->tp_free(lz); in product_dealloc()
2138 Py_TYPE(co)->tp_free(co); in combinations_dealloc()
[all …]
Dthreadmodule.c231 Py_TYPE(self)->tp_free((PyObject*)self); in localdummy_dealloc()
429 Py_TYPE(self)->tp_free((PyObject*)self); in local_dealloc()
D_functoolsmodule.c153 Py_TYPE(pto)->tp_free(pto); in partial_dealloc()
/external/python/cpython2/Modules/_sqlite/
Dprepare_protocol.c34 Py_TYPE(self)->tp_free((PyObject*)self); in pysqlite_prepare_protocol_dealloc()
Dcache.c55 Py_TYPE(self)->tp_free((PyObject*)self); in pysqlite_node_dealloc()
113 Py_TYPE(self)->tp_free((PyObject*)self); in pysqlite_cache_dealloc()
Drow.c33 Py_TYPE(self)->tp_free((PyObject*)self); in pysqlite_row_dealloc()
Dstatement.c429 Py_TYPE(self)->tp_free((PyObject*)self); in pysqlite_statement_dealloc()
/external/python/cpython2/Doc/includes/
Dtypestruct.h68 freefunc tp_free; /* Low-level free-memory routine */ member
Dnoddy2.c16 self->ob_type->tp_free((PyObject*)self); in Noddy_dealloc()
Dnoddy4.c50 self->ob_type->tp_free((PyObject*)self); in Noddy_dealloc()
Dnoddy3.c16 self->ob_type->tp_free((PyObject*)self); in Noddy_dealloc()
/external/python/cpython2/Objects/
Denumobject.c68 Py_TYPE(en)->tp_free(en); in enum_dealloc()
282 Py_TYPE(ro)->tp_free(ro); in reversed_dealloc()
Dexceptions.c85 Py_TYPE(self)->tp_free((PyObject *)self); in BaseException_dealloc()
543 Py_TYPE(self)->tp_free((PyObject *)self); in SystemExit_dealloc()
644 Py_TYPE(self)->tp_free((PyObject *)self); in EnvironmentError_dealloc()
842 Py_TYPE(self)->tp_free((PyObject *)self); in WindowsError_dealloc()
1111 Py_TYPE(self)->tp_free((PyObject *)self); in SyntaxError_dealloc()
1590 Py_TYPE(self)->tp_free((PyObject *)self); in UnicodeError_dealloc()
Dmoduleobject.c183 Py_TYPE(m)->tp_free((PyObject *)m); in module_dealloc()
Dfuncobject.c616 Py_TYPE(cm)->tp_free((PyObject *)cm); in cm_dealloc()
774 Py_TYPE(sm)->tp_free((PyObject *)sm); in sm_dealloc()
Dtypeobject.c2504 type->tp_free = PyObject_GC_Del; in type_new()
2509 type->tp_free = PyObject_Del; in type_new()
2724 Py_TYPE(type)->tp_free((PyObject *)type); in type_dealloc()
3039 Py_TYPE(self)->tp_free(self); in object_dealloc()
3137 newto->tp_free != oldto->tp_free) in compatible_for_assignment()
4039 COPYSLOT(tp_free);
4042 type->tp_free == NULL &&
4043 base->tp_free == _PyObject_Del) {
4049 type->tp_free = PyObject_GC_Del;
4192 (type->tp_free == NULL || type->tp_free == PyObject_Del)) {
[all …]
/external/python/cpython2/Mac/Modules/carbonevt/
D_CarbonEvtmodule.c142 self->ob_type->tp_free((PyObject *)self); in EventRef_dealloc()
487 self->ob_type->tp_free((PyObject *)self); in EventQueueRef_dealloc()
708 self->ob_type->tp_free((PyObject *)self); in EventLoopRef_dealloc()
838 self->ob_type->tp_free((PyObject *)self); in EventLoopTimerRef_dealloc()
991 self->ob_type->tp_free((PyObject *)self); in EventHandlerRef_dealloc()
1178 self->ob_type->tp_free((PyObject *)self); in EventHandlerCallRef_dealloc()
1311 self->ob_type->tp_free((PyObject *)self); in EventTargetRef_dealloc()
1466 self->ob_type->tp_free((PyObject *)self); in EventHotKeyRef_dealloc()
/external/brotli/python/
D_brotli.cc155 Py_TYPE(self)->tp_free((PyObject*)self); in brotli_Compressor_dealloc()
157 self->ob_type->tp_free((PyObject*)self); in brotli_Compressor_dealloc()
/external/protobuf/python/google/protobuf/pyext/
Dmap_container.cc520 Py_TYPE(_self)->tp_free(_self); in ScalarMapDealloc()
771 Py_TYPE(_self)->tp_free(_self); in MessageMapDealloc()
926 Py_TYPE(_self)->tp_free(_self); in DeallocMapIterator()
Dextension_dict.cc274 Py_TYPE(self)->tp_free(reinterpret_cast<PyObject*>(self)); in dealloc()
Ddescriptor_pool.cc170 Py_TYPE(self)->tp_free(reinterpret_cast<PyObject*>(self)); in Dealloc()
/external/python/cpython2/Mac/Modules/ibcarbon/
D_IBCarbon.c53 self->ob_type->tp_free((PyObject *)self); in IBNibRefObj_dealloc()
/external/python/cpython2/Modules/cjkcodecs/
Dmultibytecodec.c976 Py_TYPE(self)->tp_free(self); in mbiencoder_dealloc()
1185 Py_TYPE(self)->tp_free(self); in mbidecoder_dealloc()
1505 Py_TYPE(self)->tp_free(self); in mbstreamreader_dealloc()
1707 Py_TYPE(self)->tp_free(self); in mbstreamwriter_dealloc()
/external/python/cpython2/Mac/Modules/cm/
D_Cmmodule.c97 self->ob_type->tp_free((PyObject *)self); in CmpInstObj_dealloc()
373 self->ob_type->tp_free((PyObject *)self); in CmpObj_dealloc()
/external/python/cpython2/Mac/Modules/scrap/
D_Scrapmodule.c56 self->ob_type->tp_free((PyObject *)self); in ScrapObj_dealloc()

1234