/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_new.py | 112 nlocals = c.co_nlocals 126 d = new.code(argcount, nlocals, stacksize, flags, codestring, 131 d = new.code(argcount, nlocals, stacksize, flags, codestring, 137 -argcount, nlocals, stacksize, flags, codestring, 142 argcount, -nlocals, stacksize, flags, codestring, 147 argcount, nlocals, stacksize, flags, codestring, 154 d = new.code(argcount, nlocals, stacksize, flags, codestring,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | codeobject.c | 44 PyCode_New(int argcount, int nlocals, int stacksize, int flags, in PyCode_New() argument 53 if (argcount < 0 || nlocals < 0 || in PyCode_New() 83 co->co_nlocals = nlocals; in PyCode_New() 232 int nlocals; in code_new() local 248 &argcount, &nlocals, &stacksize, &flags, in code_new() 266 if (nlocals < 0) { in code_new() 292 co = (PyObject *)PyCode_New(argcount, nlocals, stacksize, flags, in code_new()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | codeobject.c | 44 PyCode_New(int argcount, int nlocals, int stacksize, int flags, in PyCode_New() argument 53 if (argcount < 0 || nlocals < 0 || in PyCode_New() 83 co->co_nlocals = nlocals; in PyCode_New() 232 int nlocals; in code_new() local 248 &argcount, &nlocals, &stacksize, &flags, in code_new() 266 if (nlocals < 0) { in code_new() 292 co = (PyObject *)PyCode_New(argcount, nlocals, stacksize, flags, in code_new()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | pyassem.py | 533 nlocals = 0 535 nlocals = len(self.varnames) 539 return types.CodeType(argcount, nlocals, self.stacksize, self.flags,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | marshal.c | 1001 int nlocals; in r_object() local 1019 nlocals = (int)r_long(p); in r_object() 1052 argcount, nlocals, stacksize, flags, in r_object()
|
D | compile.c | 3831 int nlocals, flags; in makecode() local 3854 nlocals = PyDict_Size(c->u->u_varnames); in makecode() 3869 co = PyCode_New(c->u->u_argcount, nlocals, stackdepth(c), flags, in makecode()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/ |
D | marshal.c | 1006 int nlocals; in r_object() local 1024 nlocals = (int)r_long(p); in r_object() 1057 argcount, nlocals, stacksize, flags, in r_object()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/ |
D | marshal.c | 1001 int nlocals; in r_object() local 1019 nlocals = (int)r_long(p); in r_object() 1052 argcount, nlocals, stacksize, flags, in r_object()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | compile.c | 3855 int nlocals, flags; in makecode() local 3878 nlocals = PyDict_Size(c->u->u_varnames); in makecode() 3893 co = PyCode_New(c->u->u_argcount, nlocals, stackdepth(c), flags, in makecode()
|