Searched refs:po (Results 1 – 10 of 10) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | itertoolsmodule.c | 2536 permutationsobject *po; in permutations_new() local 2580 po = (permutationsobject *)type->tp_alloc(type, 0); in permutations_new() 2581 if (po == NULL) in permutations_new() 2584 po->pool = pool; in permutations_new() 2585 po->indices = indices; in permutations_new() 2586 po->cycles = cycles; in permutations_new() 2587 po->result = NULL; in permutations_new() 2588 po->r = r; in permutations_new() 2589 po->stopped = r > n ? 1 : 0; in permutations_new() 2591 return (PyObject *)po; in permutations_new() [all …]
|
D | posixmodule.c | 1464 PyUnicodeObject *po; in posix_do_stat() local 1465 if (PyArg_ParseTuple(args, wformat, &po)) { in posix_do_stat() 1466 Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po); in posix_do_stat() 1524 PyUnicodeObject *po; in posix_access() local 1525 if (PyArg_ParseTuple(args, "Ui:access", &po, &mode)) { in posix_access() 1529 attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po)); in posix_access() 1676 PyUnicodeObject *po; in posix_chmod() local 1677 if (PyArg_ParseTuple(args, "Ui|:chmod", &po, &i)) { in posix_chmod() 1679 attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po)); in posix_chmod() 1685 res = SetFileAttributesW(PyUnicode_AS_UNICODE(po), attr); in posix_chmod() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | itertoolsmodule.c | 2575 permutationsobject *po; in permutations_new() local 2619 po = (permutationsobject *)type->tp_alloc(type, 0); in permutations_new() 2620 if (po == NULL) in permutations_new() 2623 po->pool = pool; in permutations_new() 2624 po->indices = indices; in permutations_new() 2625 po->cycles = cycles; in permutations_new() 2626 po->result = NULL; in permutations_new() 2627 po->r = r; in permutations_new() 2628 po->stopped = r > n ? 1 : 0; in permutations_new() 2630 return (PyObject *)po; in permutations_new() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | bltinmodule.c | 2044 PyObject *po; in builtin_raw_input() local 2049 po = PyObject_Str(v); in builtin_raw_input() 2050 if (po == NULL) in builtin_raw_input() 2052 prompt = PyString_AsString(po); in builtin_raw_input() 2057 po = NULL; in builtin_raw_input() 2062 Py_XDECREF(po); in builtin_raw_input()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | bltinmodule.c | 2033 PyObject *po; in builtin_raw_input() local 2038 po = PyObject_Str(v); in builtin_raw_input() 2039 if (po == NULL) in builtin_raw_input() 2041 prompt = PyString_AsString(po); in builtin_raw_input() 2046 po = NULL; in builtin_raw_input() 2051 Py_XDECREF(po); in builtin_raw_input()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | fileobject.c | 2385 PyObject *po; in file_init() local 2399 kwlist, &po, &mode, &bufsize)) { in file_init() 2401 if (fill_file_fields(foself, NULL, po, mode, in file_init()
|
D | abstract.c | 1795 PyFloatObject *po = (PyFloatObject *)o; local 1796 return PyFloat_FromDouble(po->ob_fval);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | fileobject.c | 2318 PyObject *po; in file_init() local 2332 kwlist, &po, &mode, &bufsize)) { in file_init() 2334 if (fill_file_fields(foself, NULL, po, mode, in file_init()
|
D | abstract.c | 1795 PyFloatObject *po = (PyFloatObject *)o; local 1796 return PyFloat_FromDouble(po->ob_fval);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/ |
D | edk2module.c | 1075 PyUnicodeObject *po; in posix__getfullpathname() local 1076 if (PyArg_ParseTuple(args, "U|:_getfullpathname", &po)) { in posix__getfullpathname() 1077 Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po); in posix__getfullpathname()
|