Home
last modified time | relevance | path

Searched refs:a_words (Results 1 – 1 of 1) sorted by relevance

/external/boringssl/src/crypto/fipsmodule/bn/
Dbn_test.cc458 std::unique_ptr<BN_ULONG[]> a_words(new BN_ULONG[num_a]), in TestSquare() local
460 ASSERT_TRUE(bn_copy_words(a_words.get(), num_a, a.get())); in TestSquare()
462 bn_mul_small(r_words.get(), num_r, a_words.get(), num_a, a_words.get(), in TestSquare()
468 bn_sqr_small(r_words.get(), num_r, a_words.get(), num_a); in TestSquare()
525 std::unique_ptr<BN_ULONG[]> a_words(new BN_ULONG[num_a]), in TestProduct() local
527 ASSERT_TRUE(bn_copy_words(a_words.get(), num_a, a.get())); in TestProduct()
530 bn_mul_small(r_words.get(), num_r, a_words.get(), num_a, b_words.get(), in TestProduct()
651 std::unique_ptr<BN_ULONG[]> a_words(new BN_ULONG[m_width]), in TestModMul() local
653 ASSERT_TRUE(bn_copy_words(a_words.get(), m_width, a.get())); in TestModMul()
655 bn_to_montgomery_small(a_words.get(), a_words.get(), m_width, mont.get()); in TestModMul()
[all …]