Lines Matching refs:atob_digits
1611 static const char atob_digits[86] =
1666 } else if ((s = strchr(atob_digits, c)) != NULL) {
1668 word = s - atob_digits;
1672 word += s - atob_digits;
1676 word += s - atob_digits;
1832 tr.base[0] = atob_digits[(tmpword /
1836 tr.base[1] = atob_digits[tmpword / (85 * 85 * 85)];
1838 tr.base[2] = atob_digits[tmpword / (85 * 85)];
1840 tr.base[3] = atob_digits[tmpword / 85];
1842 tr.base[4] = atob_digits[tmpword];