Lines Matching defs:digit
8626 * digit then that digit must be escaped too to prevent it being
9227 uint32_t digit;
9780 p->digit = 0;
9786 p->digit <<= 4;
9789 p->digit += (ch - '0');
9791 p->digit += ((ch - 'a') + 10);
9794 p->digit += ((ch - 'A') + 10);
9799 uint32_t codepoint = p->digit;
10611 "error parsing timestamp: at most 9-digit fraction.");