Home
last modified time | relevance | path

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

/external/vboot_reference/tests/
Dcommon.sh55 local cfunc=${x#* }
56 cfunc=${cfunc##*/}
59 echo -e "${COL_RED}ERROR at ${cfunc}, line ${cline}${spacer}${args}" \
/external/mesa3d/prebuilt-intermediates/main/
Denums.c7366 typedef int (*cfunc)(const void *, const void *); typedef
7398 (cfunc) compar_nr); in _mesa_enum_to_string()
/external/python/cpython2/Lib/
Dtrace.py285 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) in calls:
294 print " %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc)
/external/python/cpython3/Lib/
Dtrace.py226 for ((pfile, pmod, pfunc), (cfile, cmod, cfunc)) \
236 print(" %s.%s -> %s.%s" % (pmod, pfunc, cmod, cfunc))
/external/python/cpython3/Modules/_decimal/tests/
Ddeccheck.py548 cfunc = "c_func: %s(" % t.funcname
553 cfunc = "c_func: %s.%s(" % (repr(cself), t.funcname)
556 err = cfunc
/external/python/cpython2/Misc/NEWS.d/
D2.7rc1.rst99 A new C API function, :cfunc:`PySys_SetArgvEx`, allows embedders of the
/external/python/cpython3/Objects/
Dtypeobject.c4793 PyObject *cfunc = PyCFunction_NewEx(meth, (PyObject*)type, NULL); in add_methods() local
4794 if (cfunc == NULL) in add_methods()
4796 descr = PyStaticMethod_New(cfunc); in add_methods()
4798 Py_DECREF(cfunc); in add_methods()
/external/python/cpython2/Objects/
Dtypeobject.c3746 PyObject *cfunc = PyCFunction_New(meth, NULL); local
3747 if (cfunc == NULL)
3749 descr = PyStaticMethod_New(cfunc);
3750 Py_DECREF(cfunc);