Searched refs:S1 (Results 1 – 1 of 1) sorted by relevance
| /dpdk/drivers/common/cnxk/ |
| H A D | roc_hash.c | 102 uint32_t temp[4], S0, S1; /* Temporary word value */ in roc_hash_sha256_gen() local 115 S1 = rrot32(17, W[i - 2]) ^ rrot32(19, W[i - 2]) ^ in roc_hash_sha256_gen() 117 W[i] = W[i - 16] + S0 + W[i - 7] + S1; in roc_hash_sha256_gen() 130 S1 = rrot32(6, E) ^ rrot32(11, E) ^ rrot32(25, E); in roc_hash_sha256_gen() 132 temp[1] = H + S1 + temp[0] + _K[i] + W[i]; in roc_hash_sha256_gen() 213 uint64_t temp[4], S0, S1; /* Temporary word value */ in roc_hash_sha512_gen() local 227 S1 = rrot64(19, W[i - 2]) ^ rrot64(61, W[i - 2]) ^ in roc_hash_sha512_gen() 229 W[i] = W[i - 16] + S0 + W[i - 7] + S1; in roc_hash_sha512_gen() 242 S1 = rrot64(14, E) ^ rrot64(18, E) ^ rrot64(41, E); in roc_hash_sha512_gen() 244 temp[1] = H + S1 + temp[0] + _K[i] + W[i]; in roc_hash_sha512_gen()
|