OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bn_sqr_small
(Results
1 - 4
of
4
) sorted by null
/external/boringssl/src/crypto/fipsmodule/bn/
internal.h
381
//
bn_sqr_small
sets |r| to |a|^2. |num_a| must be at most |BN_SMALL_MAX_WORDS|.
384
int
bn_sqr_small
(BN_ULONG *r, size_t num_r, const BN_ULONG *a, size_t num_a);
montgomery.c
520
if (!
bn_sqr_small
(tmp, num_ab, a, num_a)) {
mul.c
887
int
bn_sqr_small
(BN_ULONG *r, size_t num_r, const BN_ULONG *a, size_t num_a) {
function
bn_test.cc
406
ASSERT_TRUE(
bn_sqr_small
(r_words.get(), num_r, a_words.get(), num_a));
[
all
...]
Completed in 129 milliseconds