Home
last modified time | relevance | path

Searched refs:PyOS_strtol (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Include/
Dintobject.h64 PyAPI_FUNC(long) PyOS_strtol(char *, char **, int);
/external/python/cpython2/Python/
Dmystrtoul.c257 PyOS_strtol(char *str, char **ptr, int base) in PyOS_strtol() function
Dast.c3344 x = PyOS_strtol((char *)s, (char **)&end, 0); in parsenumber()
/external/python/cpython3/Python/
Dmystrtoul.c263 PyOS_strtol(const char *str, char **ptr, int base) in PyOS_strtol() function
Dast.c4059 x = PyOS_strtol(s, (char **)&end, 0); in parsenumber_raw()
/external/python/cpython3/Include/
Dlongobject.h205 PyAPI_FUNC(long) PyOS_strtol(const char *, char **, int);
/external/python/cpython2/PC/os2vacpp/
Dpython.def304 PyOS_strtol
/external/python/cpython3/PC/
Dpython3.def440 PyOS_strtol=python37.PyOS_strtol
/external/python/cpython2/PC/os2emx/
Dpython27.def1015 "PyOS_strtol"
/external/python/cpython2/Modules/
Dstropmodule.c789 x = PyOS_strtol(s, &end, base); in strop_atoi()
/external/python/cpython2/Objects/
Dintobject.c374 x = PyOS_strtol(s, &end, base); in PyInt_FromString()
/external/python/cpython2/Misc/
DHISTORY201 - Bug #1521947: When checking for overflow, ``PyOS_strtol()`` used some
/external/python/cpython3/Misc/
DHISTORY17585 - Bug #1521947: When checking for overflow, ``PyOS_strtol()`` used some