Home
last modified time | relevance | path

Searched refs:pfunc (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Modules/
Dxxlimited_35.c247 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.c360 Str_Type_slots[0].pfunc = &PyUnicode_Type; in execfunc()
/third_party/python/Lib/
Dtrace.py226 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \
236 print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
/third_party/python/Modules/_decimal/tests/
Ddeccheck.py585 pfunc = "p_func: %s(" % t.funcname
592 pfunc = "p_func: %s.%s(" % (repr(pself), t.funcname)
601 err += pfunc
/third_party/python/Include/
Dobject.h219 void *pfunc; /* function pointer */ member
/third_party/python/Objects/
Dtypeobject.c3386 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/
Dtype.rst277 .. c:member:: void *PyType_Slot.pfunc
/third_party/python/Python/
Dceval.c5856 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()