/aosp_15_r20/external/python/cpython2/Modules/ |
D | _testcapimodule.c | 575 num = PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_long_and_overflow() 619 num = PyLong_FromString("-FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_long_and_overflow() 662 num = PyLong_FromString("FF", NULL, 16); in test_long_and_overflow() 677 num = PyLong_FromString("-FF", NULL, 16); in test_long_and_overflow() 740 num = PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_long_long_and_overflow() 784 num = PyLong_FromString("-FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_long_long_and_overflow() 827 num = PyLong_FromString("FF", NULL, 16); in test_long_long_and_overflow() 842 num = PyLong_FromString("-FF", NULL, 16); in test_long_long_and_overflow() 1198 num = PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_k_code() 1218 num = PyLong_FromString("-FFFFFFFF000000000000000042", NULL, 16); in test_k_code()
|
D | stropmodule.c | 845 x = PyLong_FromString(s, &end, base); in strop_atol()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/ |
D | longobject.h | 74 PyAPI_FUNC(PyObject *) PyLong_FromString(const char *, char **, int);
|
/aosp_15_r20/external/python/cpython3/Include/ |
D | longobject.h | 74 PyAPI_FUNC(PyObject *) PyLong_FromString(const char *, char **, int);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/ |
D | longobject.h | 74 PyAPI_FUNC(PyObject *) PyLong_FromString(const char *, char **, int);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/ |
D | longobject.h | 74 PyAPI_FUNC(PyObject *) PyLong_FromString(const char *, char **, int);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/ |
D | longobject.h | 74 PyAPI_FUNC(PyObject *) PyLong_FromString(const char *, char **, int);
|
/aosp_15_r20/external/python/cpython2/Include/ |
D | longobject.h | 58 PyAPI_FUNC(PyObject *) PyLong_FromString(char *, char **, int);
|
/aosp_15_r20/external/python/cpython3/Parser/ |
D | pegen.c | 574 return PyLong_FromString(s, (char **)0, 0); in parsenumber_raw() 582 return PyLong_FromString(s, (char **)0, 0); in parsenumber_raw()
|
/aosp_15_r20/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 668 PyLong_FromString:PyObject*::+1: 669 PyLong_FromString:char*:str:: 670 PyLong_FromString:char**:pend:: 671 PyLong_FromString:int:base::
|
/aosp_15_r20/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 241 PyLong_FromString
|
/aosp_15_r20/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 554 num = PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_long_and_overflow() 598 num = PyLong_FromString("-FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_long_and_overflow() 641 num = PyLong_FromString("FF", NULL, 16); in test_long_and_overflow() 656 num = PyLong_FromString("-FF", NULL, 16); in test_long_and_overflow() 718 num = PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_long_long_and_overflow() 762 num = PyLong_FromString("-FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_long_long_and_overflow() 805 num = PyLong_FromString("FF", NULL, 16); in test_long_long_and_overflow() 820 num = PyLong_FromString("-FF", NULL, 16); in test_long_long_and_overflow() 1546 num = PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_k_code() 1566 num = PyLong_FromString("-FFFFFFFF000000000000000042", NULL, 16); in test_k_code()
|
D | _pickle.c | 5186 value = PyLong_FromString(s, NULL, 0); in load_int() 5340 value = PyLong_FromString(s, NULL, 0); in load_long() 6187 key = PyLong_FromString(s, NULL, 10); in load_get() 6371 key = PyLong_FromString(s, NULL, 10); in load_put()
|
D | _json.c | 1019 rval = PyLong_FromString(buf, NULL, 10); in _match_number_unicode()
|
/aosp_15_r20/external/python/cpython2/Objects/ |
D | intobject.c | 371 return PyLong_FromString(s, pend, base); in PyInt_FromString() 396 return PyLong_FromString(s, pend, base); in PyInt_FromString()
|
D | longobject.c | 1715 PyLong_FromString(char *str, char **pend, int base) in PyLong_FromString() function 2010 result = PyLong_FromString(buffer, NULL, base); in PyLong_FromUnicode() 4047 return PyLong_FromString(PyString_AS_STRING(x), NULL, base); in long_new()
|
/aosp_15_r20/external/python/cpython2/Doc/c-api/ |
D | long.rst | 86 .. c:function:: PyObject* PyLong_FromString(char *str, char **pend, int base)
|
/aosp_15_r20/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1211 PyLong_FromString:PyObject*::+1: 1212 PyLong_FromString:const char*:str:: 1213 PyLong_FromString:char**:pend:: 1214 PyLong_FromString:int:base::
|
D | stable_abi.dat | 365 function,PyLong_FromString,3.2,,
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | long.rst | 84 .. c:function:: PyObject* PyLong_FromString(const char *str, char **pend, int base)
|
/aosp_15_r20/external/python/cpython2/PC/os2emx/ |
D | python27.def | 403 "PyLong_FromString"
|
/aosp_15_r20/external/python/cpython3/Tools/c-analyzer/cpython/ |
D | globals-to-fix.tsv | 404 Objects/longobject.c PyLong_FromString log_base_BASE - 405 Objects/longobject.c PyLong_FromString convwidth_base - 406 Objects/longobject.c PyLong_FromString convmultmax_base -
|
/aosp_15_r20/external/python/cpython3/PC/ |
D | python3dll.c | 343 EXPORT_FUNC(PyLong_FromString)
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | longobject.c | 2270 PyLong_FromString(const char *str, char **pend, int base) in PyLong_FromString() function 2648 result = PyLong_FromString(s, &end, base); in _PyLong_FromBytes() 2678 result = PyLong_FromString(buffer, &end, base); in PyLong_FromUnicodeObject()
|
/aosp_15_r20/external/python/cpython2/Python/ |
D | ast.c | 3343 return PyLong_FromString((char *)s, (char **)0, 0); in parsenumber() 3347 return PyLong_FromString((char *)s, (char **)0, 0); in parsenumber()
|