Home
last modified time | relevance | path

Searched refs:COPYSLOT (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
Dtypeobject.c4944 #undef COPYSLOT in inherit_slots()
4954 #define COPYSLOT(SLOT) \ in inherit_slots() macro
4957 #define COPYASYNC(SLOT) COPYSLOT(tp_as_async->SLOT) in inherit_slots()
4958 #define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT) in inherit_slots()
4959 #define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT) in inherit_slots()
4960 #define COPYMAP(SLOT) COPYSLOT(tp_as_mapping->SLOT) in inherit_slots()
4961 #define COPYBUF(SLOT) COPYSLOT(tp_as_buffer->SLOT) in inherit_slots()
5049 COPYSLOT(tp_dealloc); in inherit_slots()
5059 COPYSLOT(tp_repr); in inherit_slots()
5061 COPYSLOT(tp_call); in inherit_slots()
[all …]
/external/python/cpython2/Objects/
Dtypeobject.c3932 #undef COPYSLOT
3942 #define COPYSLOT(SLOT) \ macro
3945 #define COPYNUM(SLOT) COPYSLOT(tp_as_number->SLOT)
3946 #define COPYSEQ(SLOT) COPYSLOT(tp_as_sequence->SLOT)
3947 #define COPYMAP(SLOT) COPYSLOT(tp_as_mapping->SLOT)
3948 #define COPYBUF(SLOT) COPYSLOT(tp_as_buffer->SLOT)
4041 COPYSLOT(tp_dealloc);
4042 COPYSLOT(tp_print);
4052 COPYSLOT(tp_repr);
4054 COPYSLOT(tp_call);
[all …]