Home
last modified time | relevance | path

Searched refs:functools_reduce (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_functoolsmodule.c15 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
371 {"reduce", functools_reduce, METH_VARARGS, reduce_doc},
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_functoolsmodule.c15 functools_reduce(PyObject *self, PyObject *args) in functools_reduce() function
375 {"reduce", functools_reduce, METH_VARARGS, reduce_doc},
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dbltinmodule.c2105 static PyObject *functools_reduce = NULL; in builtin_reduce() local
2111 if (functools_reduce == NULL) { in builtin_reduce()
2115 functools_reduce = PyObject_GetAttrString(functools, "reduce"); in builtin_reduce()
2117 if (functools_reduce == NULL) in builtin_reduce()
2120 return PyObject_Call(functools_reduce, args, NULL); in builtin_reduce()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dbltinmodule.c2094 static PyObject *functools_reduce = NULL; in builtin_reduce() local
2100 if (functools_reduce == NULL) { in builtin_reduce()
2104 functools_reduce = PyObject_GetAttrString(functools, "reduce"); in builtin_reduce()
2106 if (functools_reduce == NULL) in builtin_reduce()
2109 return PyObject_Call(functools_reduce, args, NULL); in builtin_reduce()