Searched refs:newfunc (Results 1 – 10 of 10) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | funcobject.c | 372 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/ |
D | funcobject.c | 372 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/ |
D | pstats.py | 259 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/ |
D | test_functools.py | 11 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/ |
D | sysctl.h | 119 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/ |
D | object.h | 321 typedef PyObject *(*newfunc)(struct _typeobject *, PyObject *, PyObject *); typedef 390 newfunc tp_new;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | object.h | 321 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/ |
D | edk2module.c | 413 static newfunc structseq_new;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/ |
D | edk2module.c | 412 static newfunc structseq_new;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | posixmodule.c | 1215 static newfunc structseq_new;
|