OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:abs_m
(Results
1 - 1
of
1
) sorted by null
/external/openssl/crypto/bn/
bn_mod.c
233
BIGNUM *
abs_m
= NULL;
local
240
abs_m
= BN_dup(m);
241
if (
abs_m
== NULL) return 0;
242
abs_m
->neg = 0;
245
ret = BN_mod_lshift_quick(r, r, n, (
abs_m
?
abs_m
: m));
248
if (
abs_m
)
249
BN_free(
abs_m
);
Completed in 96 milliseconds