Home | History | Annotate | Download | only in dist

Lines Matching refs:digit

12639 ** This implemention requires years to be expressed as a 4-digit number
18384 ** Return the ascii code for the leading digit of *val, then
18396 int digit;
18399 digit = (int)*val;
18400 d = digit;
18401 digit += '0';
18403 return (char)digit;
18788 ** significant digit of the number */
18818 *(bufpt++) = (char)((exp/100)+'0'); /* 100's digit */
18821 *(bufpt++) = (char)(exp/10+'0'); /* 10's digit */
18822 *(bufpt++) = (char)(exp%10+'0'); /* 1's digit */
20317 ** Add the sign if we've seen at least one digit */
20377 ** in the values of the last digit if the only difference is in the
20378 ** last digit. So, for example,
20451 /* 19-digit numbers must be no larger than 9223372036854775807 if positive
27538 ** where NNNN is a 4 digit decimal number. The NNNN naming schemes are
76164 ** characters, does not begin with a digit and is not an SQL keyword,
104177 /* If the next character is a digit, this is a floating point
104229 ** a digit. Try to match #AAAA where AAAA is a parameter name. */