Searched refs:PyOS_strtol (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython2/Include/ |
D | intobject.h | 64 PyAPI_FUNC(long) PyOS_strtol(char *, char **, int);
|
/external/python/cpython2/Python/ |
D | mystrtoul.c | 257 PyOS_strtol(char *str, char **ptr, int base) in PyOS_strtol() function
|
D | ast.c | 3344 x = PyOS_strtol((char *)s, (char **)&end, 0); in parsenumber()
|
/external/python/cpython3/Python/ |
D | mystrtoul.c | 263 PyOS_strtol(const char *str, char **ptr, int base) in PyOS_strtol() function
|
D | ast.c | 4059 x = PyOS_strtol(s, (char **)&end, 0); in parsenumber_raw()
|
/external/python/cpython3/Include/ |
D | longobject.h | 205 PyAPI_FUNC(long) PyOS_strtol(const char *, char **, int);
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 304 PyOS_strtol
|
/external/python/cpython3/PC/ |
D | python3.def | 440 PyOS_strtol=python37.PyOS_strtol
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 1015 "PyOS_strtol"
|
/external/python/cpython2/Modules/ |
D | stropmodule.c | 789 x = PyOS_strtol(s, &end, base); in strop_atoi()
|
/external/python/cpython2/Objects/ |
D | intobject.c | 374 x = PyOS_strtol(s, &end, base); in PyInt_FromString()
|
/external/python/cpython2/Misc/ |
D | HISTORY | 201 - Bug #1521947: When checking for overflow, ``PyOS_strtol()`` used some
|
/external/python/cpython3/Misc/ |
D | HISTORY | 17585 - Bug #1521947: When checking for overflow, ``PyOS_strtol()`` used some
|