Lines Matching defs:tmpword
2091 register isc_int32_t tmpword = word;
2093 if (tmpword < 0) {
2098 tmpword -= (isc_int32_t)(85 * 85 * 85 * 85 * 32);
2100 if (tmpword < 0) {
2102 tmpword -= (isc_int32_t)(85 * 85 * 85 * 85 * 32);
2106 tr.base[0] = atob_digits[(tmpword /
2109 tmpword %= (isc_int32_t)(85 * 85 * 85 * 85);
2110 tr.base[1] = atob_digits[tmpword / (85 * 85 * 85)];
2111 tmpword %= (85 * 85 * 85);
2112 tr.base[2] = atob_digits[tmpword / (85 * 85)];
2113 tmpword %= (85 * 85);
2114 tr.base[3] = atob_digits[tmpword / 85];
2115 tmpword %= 85;
2116 tr.base[4] = atob_digits[tmpword];