Searched defs:_PyUnicode_ToDecimalDigit (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Objects/
H A Dunicodectype.c84 int _PyUnicode_ToDecimalDigit(Py_UNICODE ch) function
93 if (_PyUnicode_ToDecimalDigit(ch) < 0)
/external/python/cpython3/Objects/
H A Dunicodectype.c106 int _PyUnicode_ToDecimalDigit(Py_UCS4 ch) function
115 if (_PyUnicode_ToDecimalDigit(ch) < 0)
/external/python/cpython2/Include/
H A Dunicodeobject.h226 # define _PyUnicode_ToDecimalDigit _PyUnicodeUCS2_ToDecimalDigit macro
313 # define _PyUnicode_ToDecimalDigit _PyUnicodeUCS4_ToDecimalDigit macro
349 #define Py_UNICODE_TODECIMAL(ch) _PyUnicode_ToDecimalDigit(ch)
379 #define Py_UNICODE_TODECIMAL(ch) _PyUnicode_ToDecimalDigit(ch)
1381 PyAPI_FUNC(int) _PyUnicode_ToDecimalDigit(

Completed in 100 milliseconds