Lines Matching refs:digit
12632 ** This implemention requires years to be expressed as a 4-digit number
18377 ** Return the ascii code for the leading digit of *val, then
18389 int digit;
18392 digit = (int)*val;
18393 d = digit;
18394 digit += '0';
18396 return (char)digit;
18781 ** significant digit of the number */
18811 *(bufpt++) = (char)((exp/100)+'0'); /* 100's digit */
18814 *(bufpt++) = (char)(exp/10+'0'); /* 10's digit */
18815 *(bufpt++) = (char)(exp%10+'0'); /* 1's digit */
20310 ** Add the sign if we've seen at least one digit */
20370 ** in the values of the last digit if the only difference is in the
20371 ** last digit. So, for example,
20444 /* 19-digit numbers must be no larger than 9223372036854775807 if positive
27531 ** where NNNN is a 4 digit decimal number. The NNNN naming schemes are
76157 ** characters, does not begin with a digit and is not an SQL keyword,
104170 /* If the next character is a digit, this is a floating point
104222 ** a digit. Try to match #AAAA where AAAA is a parameter name. */