Lines Matching defs:max_bytes
134 uint32_t number_of_operations, max_bytes, bytes_left, remaining_bytes;
146 max_bytes = SHA256_HASH_SIZE_BYTES * SHA256_MSG_LENGTH_ONETIME;
169 number_of_operations = src_len_inbyte / max_bytes;
170 remaining_bytes = src_len_inbyte % max_bytes;
186 * max_bytes to bytes_left to process final
208 if (len_bits_lsb <= (max_bytes * 8U)) {
211 len_bits_lsb -= (max_bytes * 8U);
217 max_bytes = (SHA256_HASH_SIZE_BYTES *
219 if (bytes_left < max_bytes) {
220 max_bytes = bytes_left;
223 bytes_left = bytes_left - max_bytes;
227 ret = tegra_se_start_normal_operation(src_addr, max_bytes,