Searched refs:pfunc (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Modules/ |
D | xxlimited_35.c | 247 Null_Type_slots[0].pfunc = &PyBaseObject_Type; in xx_modexec() 248 Null_Type_slots[1].pfunc = PyType_GenericNew; in xx_modexec() 249 Str_Type_slots[0].pfunc = &PyUnicode_Type; in xx_modexec()
|
D | _testmultiphase.c | 360 Str_Type_slots[0].pfunc = &PyUnicode_Type; in execfunc()
|
/third_party/python/Lib/ |
D | trace.py | 226 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \ 236 print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
|
/third_party/python/Modules/_decimal/tests/ |
D | deccheck.py | 585 pfunc = "p_func: %s(" % t.funcname 592 pfunc = "p_func: %s.%s(" % (repr(pself), t.funcname) 601 err += pfunc
|
/third_party/python/Include/ |
D | object.h | 219 void *pfunc; /* function pointer */ member
|
/third_party/python/Objects/ |
D | typeobject.c | 3386 for (const PyMemberDef *memb = slot->pfunc; memb->name != NULL; memb++) { in PyType_FromModuleAndSpec() 3447 base = slot->pfunc; in PyType_FromModuleAndSpec() 3449 bases = slot->pfunc; in PyType_FromModuleAndSpec() 3515 if (slot->pfunc == NULL) { in PyType_FromModuleAndSpec() 3519 size_t len = strlen(slot->pfunc)+1; in PyType_FromModuleAndSpec() 3526 memcpy(tp_doc, slot->pfunc, len); in PyType_FromModuleAndSpec() 3532 memcpy(PyHeapType_GET_MEMBERS(res), slot->pfunc, len); in PyType_FromModuleAndSpec() 3540 *(void**)((char*)res_start + slot_offset) = slot->pfunc; in PyType_FromModuleAndSpec() 3544 *(void**)((char*)parent_slot + subslot_offset) = slot->pfunc; in PyType_FromModuleAndSpec()
|
/third_party/python/Doc/c-api/ |
D | type.rst | 277 .. c:member:: void *PyType_Slot.pfunc
|
/third_party/python/Python/ |
D | ceval.c | 5856 PyObject **pfunc = (*pp_stack) - oparg - 1; in Py_LOCAL_INLINE() local 5857 PyObject *func = *pfunc; in Py_LOCAL_INLINE() 5873 while ((*pp_stack) > pfunc) { in Py_LOCAL_INLINE()
|