Home
last modified time | relevance | path

Searched refs:decimal_length (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
D_testcapimodule.c1744 Py_ssize_t decimal_length, new_length; in unicode_encodedecimal() local
1750 decimal_length = length * 10; /* len('') */ in unicode_encodedecimal()
1751 decimal = PyBytes_FromStringAndSize(NULL, decimal_length); in unicode_encodedecimal()
1764 assert(new_length <= decimal_length); in unicode_encodedecimal()
/external/python/cpython3/Modules/
D_testcapimodule.c1952 Py_ssize_t decimal_length, new_length; in unicode_encodedecimal() local
1958 decimal_length = length * 7; /* len('&#8364;') */ in unicode_encodedecimal()
1959 decimal = PyBytes_FromStringAndSize(NULL, decimal_length); in unicode_encodedecimal()
1972 assert(new_length <= decimal_length); in unicode_encodedecimal()