Lines Matching defs:word
1158 tctx.width = 60; /* Used for hex word length only. */
1903 isc_int32_t word;
1910 #define word state->word
1938 word = (isc_int32_t)(s - atob_digits);
1941 word = times85(word);
1942 word += (isc_int32_t)(s - atob_digits);
1945 word = times85(word);
1946 word += (isc_int32_t)(s - atob_digits);
1947 RETERR(putbyte((word >> 24) & 0xff, target, state));
1948 RETERR(putbyte((word >> 16) & 0xff, target, state));
1949 RETERR(putbyte((word >> 8) & 0xff, target, state));
1950 RETERR(putbyte(word & 0xff, target, state));
1951 word = 0;
2005 Ceor = Csum = Crot = word = bcount = 0;
2081 word <<= 8;
2082 word |= c;
2084 if (word == 0) {
2091 register isc_int32_t tmpword = word;
2137 Ceor = Csum = Crot = word = bcount = 0;