Home
last modified time | relevance | path

Searched refs:newfunc (Results 1 – 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dfuncobject.c372 PyFunctionObject *newfunc; in func_new() local
426 newfunc = (PyFunctionObject *)PyFunction_New((PyObject *)code, in func_new()
428 if (newfunc == NULL) in func_new()
433 Py_DECREF(newfunc->func_name); in func_new()
434 newfunc->func_name = name; in func_new()
438 newfunc->func_defaults = defaults; in func_new()
442 newfunc->func_closure = closure; in func_new()
445 return (PyObject *)newfunc; in func_new()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dfuncobject.c372 PyFunctionObject *newfunc; in func_new() local
426 newfunc = (PyFunctionObject *)PyFunction_New((PyObject *)code, in func_new()
428 if (newfunc == NULL) in func_new()
433 Py_DECREF(newfunc->func_name); in func_new()
434 newfunc->func_name = name; in func_new()
438 newfunc->func_defaults = defaults; in func_new()
442 newfunc->func_closure = closure; in func_new()
445 return (PyObject *)newfunc; in func_new()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dpstats.py259 newfunc = func_strip_path(func)
260 if len(func_std_string(newfunc)) > max_name_len:
261 max_name_len = len(func_std_string(newfunc))
266 if newfunc in newstats:
267 newstats[newfunc] = add_func_stats(
268 newstats[newfunc],
271 newstats[newfunc] = (cc, nc, tt, ct, newcallers)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_functools.py11 def newfunc(*fargs, **fkeywords): function
15 newfunc.func = func
16 newfunc.args = args
17 newfunc.keywords = keywords
18 return newfunc
/device/linaro/bootloader/edk2/StdLib/Include/sys/
Dsysctl.h119 int (*newfunc)(struct sysctl_req *, void *, size_t); member
151 #define SYSCTL_IN(r, p, l) (r->newfunc)(r, p, l)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dobject.h321 typedef PyObject *(*newfunc)(struct _typeobject *, PyObject *, PyObject *); typedef
390 newfunc tp_new;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dobject.h321 typedef PyObject *(*newfunc)(struct _typeobject *, PyObject *, PyObject *); typedef
390 newfunc tp_new;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
Dedk2module.c413 static newfunc structseq_new;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
Dedk2module.c412 static newfunc structseq_new;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dposixmodule.c1215 static newfunc structseq_new;