Home
last modified time | relevance | path

Searched refs:digitval (Results 1 – 4 of 4) sorted by relevance

/external/syslinux/dos/
Dstrntoumax.c11 static inline int digitval(int ch) in digitval() function
63 while (n && (d = digitval(*nptr)) >= 0 && d < base) { in strntoumax()
/external/syslinux/com32/lib/
Dstrntoumax.c11 static inline int digitval(int ch) in digitval() function
63 while (n && (d = digitval(*nptr)) >= 0 && d < base) { in strntoumax()
/external/python/cpython2/Objects/stringlib/
Dstring_format.h199 Py_ssize_t digitval; in get_integer() local
207 digitval = STRINGLIB_TODECIMAL(*p); in get_integer()
208 if (digitval < 0) in get_integer()
216 if (accumulator > (PY_SSIZE_T_MAX - digitval) / 10) { in get_integer()
221 accumulator = accumulator * 10 + digitval; in get_integer()
Dformatter.h76 Py_ssize_t accumulator, digitval; in get_integer() local
82 digitval = STRINGLIB_TODECIMAL(**ptr); in get_integer()
83 if (digitval < 0) in get_integer()
91 if (accumulator > (PY_SSIZE_T_MAX - digitval) / 10) { in get_integer()
96 accumulator = accumulator * 10 + digitval; in get_integer()