Lines Matching defs:max_bytes
281 uint32_t number_of_operations, max_bytes, bytes_left, remaining_bytes;
293 max_bytes = (SHA256_HASH_SIZE_BYTES * SHA256_MSG_LENGTH_ONETIME);
316 number_of_operations = (src_len_inbyte / max_bytes);
317 remaining_bytes = (src_len_inbyte % max_bytes);
333 * max_bytes to bytes_left to process final
355 if (len_bits_lsb <= (max_bytes * 8U)) {
358 len_bits_lsb -= (max_bytes * 8U);
364 max_bytes = (SHA256_HASH_SIZE_BYTES *
366 if (bytes_left < max_bytes) {
367 max_bytes = bytes_left;
370 bytes_left = bytes_left - max_bytes;
374 ret = tegra_se_start_normal_operation(src_addr, max_bytes,