Lines Matching defs:bytes
55 compute_crc8(unsigned char *bytes, int length)
74 cm_nxt(p_crc, bytes[i]);
83 compute_crc32(unsigned char *bytes, int length)
102 cm_nxt(p_crc, bytes[i]);
117 compute_checksum32(unsigned char *bytes, int length)
124 /* Grab bytes in 4-byte chunks */
127 (void) memcpy(&next4bytes, &(bytes[i]), 4);
139 /* Grab any remaining bytes at the end */
141 tailbytes[k] = bytes[j];
145 * Treat any remaining bytes put into tailbytes as if they were
146 * a left-zero-padded unsigned int (uint32_t == 4 bytes!)