Lines Matching defs:byte
86 * most significant bit of the first byte being the first bit
104 * It naturally follows than H_i_(i+7) only depends on the value of the byte
105 * and the position of the byte in the input.
106 * Therefore we may pre-calculate the value of each byte sub-hash H_i_(i+7)
107 * for each possible byte value and each possible byte input position, and
108 * then just assemble the hash of the packet byte-by-byte instead of
130 unsigned byte;
143 for (byte = 0; byte <= UINT8_MAX; byte++) {
148 if (byte & mask)
151 cache[i * (UINT8_MAX + 1) + byte] = res;