Searched refs:cnt (Results 1 – 2 of 2) sorted by relevance
74 size_t cnt; in __sha256_crypt_r() local159 for (cnt = key_len; cnt > 32; cnt -= 32) in __sha256_crypt_r()165 for (cnt = key_len; cnt > 0; cnt >>= 1) in __sha256_crypt_r()166 if ((cnt & 1) != 0) in __sha256_crypt_r()178 for (cnt = 0; cnt < key_len; ++cnt) in __sha256_crypt_r()186 for (cnt = key_len; cnt >= 32; cnt -= 32) in __sha256_crypt_r()194 for (cnt = 0; cnt < 16 + alt_result[0]; ++cnt) in __sha256_crypt_r()202 for (cnt = salt_len; cnt >= 32; cnt -= 32) in __sha256_crypt_r()208 for (cnt = 0; cnt < rounds; ++cnt) in __sha256_crypt_r()220 if (cnt % 3 != 0) in __sha256_crypt_r()[all …]
74 size_t cnt; in __sha512_crypt_r() local159 for (cnt = key_len; cnt > 64; cnt -= 64) in __sha512_crypt_r()166 for (cnt = key_len; cnt > 0; cnt >>= 1) in __sha512_crypt_r()167 if ((cnt & 1) != 0) in __sha512_crypt_r()179 for (cnt = 0; cnt < key_len; ++cnt) in __sha512_crypt_r()187 for (cnt = key_len; cnt >= 64; cnt -= 64) in __sha512_crypt_r()195 for (cnt = 0; cnt < 16 + alt_result[0]; ++cnt) in __sha512_crypt_r()203 for (cnt = salt_len; cnt >= 64; cnt -= 64) in __sha512_crypt_r()209 for (cnt = 0; cnt < rounds; ++cnt) in __sha512_crypt_r()221 if (cnt % 3 != 0) in __sha512_crypt_r()[all …]
Completed in 5 milliseconds