Home
last modified time | relevance | path

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

/third_party/python/Include/
Dlongobject.h103 PyAPI_FUNC(PyObject *) PyLong_FromString(const char *, char **, int);
/third_party/python/Modules/
D_testcapimodule.c557 num = PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_long_and_overflow()
601 num = PyLong_FromString("-FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_long_and_overflow()
644 num = PyLong_FromString("FF", NULL, 16); in test_long_and_overflow()
659 num = PyLong_FromString("-FF", NULL, 16); in test_long_and_overflow()
721 num = PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_long_long_and_overflow()
765 num = PyLong_FromString("-FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_long_long_and_overflow()
808 num = PyLong_FromString("FF", NULL, 16); in test_long_long_and_overflow()
823 num = PyLong_FromString("-FF", NULL, 16); in test_long_long_and_overflow()
1351 num = PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16); in test_k_code()
1371 num = PyLong_FromString("-FFFFFFFF000000000000000042", NULL, 16); in test_k_code()
D_pickle.c5177 value = PyLong_FromString(s, NULL, 0); in load_int()
5331 value = PyLong_FromString(s, NULL, 0); in load_long()
6180 key = PyLong_FromString(s, NULL, 10); in load_get()
6364 key = PyLong_FromString(s, NULL, 10); in load_put()
D_json.c1017 rval = PyLong_FromString(buf, NULL, 10); in _match_number_unicode()
/third_party/python/Doc/data/
Drefcounts.dat1211 PyLong_FromString:PyObject*::+1:
1212 PyLong_FromString:const char*:str::
1213 PyLong_FromString:char**:pend::
1214 PyLong_FromString:int:base::
Dstable_abi.dat354 function,PyLong_FromString,3.2,
/third_party/python/Doc/c-api/
Dlong.rst84 .. c:function:: PyObject* PyLong_FromString(const char *str, char **pend, int base)
/third_party/python/PC/
Dpython3dll.c337 EXPORT_FUNC(PyLong_FromString)
/third_party/python/Parser/
Dpegen.c1041 return PyLong_FromString(s, (char **)0, 0); in parsenumber_raw()
1049 return PyLong_FromString(s, (char **)0, 0); in parsenumber_raw()
/third_party/python/Objects/
Dlongobject.c2130 PyLong_FromString(const char *str, char **pend, int base) in PyLong_FromString() function
2508 result = PyLong_FromString(s, &end, base); in _PyLong_FromBytes()
2538 result = PyLong_FromString(buffer, &end, base); in PyLong_FromUnicodeObject()
/third_party/python/Misc/
Dstable_abi.txt860 function PyLong_FromString
DHISTORY16554 - Issue #3236: Return small longs from PyLong_FromString.
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv2115 Objects/longobject.c PyLong_FromString log_base_BASE -
2116 Objects/longobject.c PyLong_FromString convwidth_base -
2117 Objects/longobject.c PyLong_FromString convmultmax_base -