Searched refs:expandsize (Results 1 - 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dunicodeobject.c3042 const Py_ssize_t expandsize = 10; local
3044 const Py_ssize_t expandsize = 6; local
3065 if (size > (PY_SSIZE_T_MAX - 2 - 1) / expandsize)
3070 + expandsize*size
3325 const Py_ssize_t expandsize = 10; local
3327 const Py_ssize_t expandsize = 6; local
3330 if (size > PY_SSIZE_T_MAX / expandsize)
3333 repr = PyString_FromStringAndSize(NULL, expandsize * size);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dunicodeobject.c2994 const Py_ssize_t expandsize = 10; local
2996 const Py_ssize_t expandsize = 6; local
3017 if (size > (PY_SSIZE_T_MAX - 2 - 1) / expandsize)
3022 + expandsize*size
3277 const Py_ssize_t expandsize = 10; local
3279 const Py_ssize_t expandsize = 6; local
3282 if (size > PY_SSIZE_T_MAX / expandsize)
3285 repr = PyString_FromStringAndSize(NULL, expandsize * size);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A DcPickle.c1322 const Py_ssize_t expandsize = 10; local
1324 const Py_ssize_t expandsize = 6; local
1327 if (size > PY_SSIZE_T_MAX / expandsize)
1330 repr = PyString_FromStringAndSize(NULL, expandsize * size);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A DcPickle.c1291 const Py_ssize_t expandsize = 10; local
1293 const Py_ssize_t expandsize = 6; local
1296 if (size > PY_SSIZE_T_MAX / expandsize)
1299 repr = PyString_FromStringAndSize(NULL, expandsize * size);

Completed in 57 milliseconds