Searched refs:t (Results 1 – 2 of 2) sorted by relevance
123 for (unsigned int t = 0; t < 16; ++t) in sha256_process_block() local125 W[t] = SWAP (*words); in sha256_process_block()128 for (unsigned int t = 16; t < 64; ++t) in sha256_process_block() local129 W[t] = _R1 (W[t - 2]) + W[t - 7] + _R0 (W[t - 15]) + W[t - 16]; in sha256_process_block()132 for (unsigned int t = 0; t < 64; ++t) in sha256_process_block() local134 uint32_t T1 = h + _S1 (e) + _Ch (e, f, g) + K[t] + W[t]; in sha256_process_block()
154 for (unsigned int t = 0; t < 16; ++t) in sha512_process_block() local156 W[t] = SWAP (*words); in sha512_process_block()159 for (unsigned int t = 16; t < 80; ++t) in sha512_process_block() local160 W[t] = _R1 (W[t - 2]) + W[t - 7] + _R0 (W[t - 15]) + W[t - 16]; in sha512_process_block()163 for (unsigned int t = 0; t < 80; ++t) in sha512_process_block() local165 uint64_t T1 = h + _S1 (e) + _Ch (e, f, g) + K[t] + W[t]; in sha512_process_block()
Completed in 7 milliseconds