Searched refs:u64_value (Results 1 – 3 of 3) sorted by relevance
/third_party/node/deps/openssl/openssl/providers/implementations/kdfs/ |
D | scrypt.c | 188 uint64_t u64_value; in kdf_scrypt_set_ctx_params() local 203 if (!OSSL_PARAM_get_uint64(p, &u64_value) in kdf_scrypt_set_ctx_params() 204 || u64_value <= 1 in kdf_scrypt_set_ctx_params() 205 || !is_power_of_two(u64_value)) in kdf_scrypt_set_ctx_params() 207 ctx->N = u64_value; in kdf_scrypt_set_ctx_params() 212 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params() 214 ctx->r = u64_value; in kdf_scrypt_set_ctx_params() 219 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params() 221 ctx->p = u64_value; in kdf_scrypt_set_ctx_params() 226 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params() [all …]
|
/third_party/openssl/providers/implementations/kdfs/ |
D | scrypt.c | 188 uint64_t u64_value; in kdf_scrypt_set_ctx_params() local 203 if (!OSSL_PARAM_get_uint64(p, &u64_value) in kdf_scrypt_set_ctx_params() 204 || u64_value <= 1 in kdf_scrypt_set_ctx_params() 205 || !is_power_of_two(u64_value)) in kdf_scrypt_set_ctx_params() 207 ctx->N = u64_value; in kdf_scrypt_set_ctx_params() 212 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params() 214 ctx->r = u64_value; in kdf_scrypt_set_ctx_params() 219 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params() 221 ctx->p = u64_value; in kdf_scrypt_set_ctx_params() 226 if (!OSSL_PARAM_get_uint64(p, &u64_value) || u64_value < 1) in kdf_scrypt_set_ctx_params() [all …]
|
/third_party/skia/third_party/externals/spirv-cross/ |
D | spirv_glsl.cpp | 5089 uint64_t u64_value = c.scalar_u64(col, row); in convert_double_to_string() local 5096 sprintf(print_buffer, "0x%llx%s", static_cast<unsigned long long>(u64_value), in convert_double_to_string()
|