Searched refs:u64_value (Results 1 – 3 of 3) sorted by relevance
221 uint64_t u64_value; in kdf_scrypt_set_ctx_params() local236 if (!OSSL_PARAM_get_uint64(p, &u64_value) in kdf_scrypt_set_ctx_params()237 || u64_value <= 1 in kdf_scrypt_set_ctx_params()238 || !is_power_of_two(u64_value)) in kdf_scrypt_set_ctx_params()240 ctx->N = u64_value; in kdf_scrypt_set_ctx_params()245 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params()247 ctx->r = u64_value; in kdf_scrypt_set_ctx_params()252 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params()254 ctx->p = u64_value; in kdf_scrypt_set_ctx_params()259 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params()[all …]
22 QLOG_U64("u64_value", 123)
203 if (!(value > 1 && is_power_of_two(u64_value)))