OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BN_one
(Results
1 - 7
of
7
) sorted by null
/external/boringssl/src/crypto/bn/
gcd.c
265
if (!
BN_one
(X) || BN_copy(B, a) == NULL || BN_copy(A, n) == NULL) {
385
if (!
BN_one
(D)) {
398
if (!
BN_one
(D)) {
583
if (!
BN_one
(X) || BN_copy(B, a) == NULL || BN_copy(A, n) == NULL) {
exponentiation.c
171
if (!
BN_one
(rr)) {
453
return
BN_one
(r);
507
if (!
BN_one
(r)) {
644
return
BN_one
(rr);
891
return
BN_one
(rr);
[
all
...]
bn_test.cc
435
if (!
BN_one
(a.get())) {
557
if (!a || !b || !c || !d || !e || !
BN_one
(c.get()) ||
634
if (!b || !c || !d || !
BN_one
(c.get())) {
1009
if (!
BN_one
(a.get()) || !
BN_one
(b.get())) {
1077
if (!
BN_one
(a.get()) || !
BN_one
(b.get())) {
1151
if (!
BN_one
(a.get()) || !
BN_one
(b.get())) {
[
all
...]
bn.c
249
int
BN_one
(BIGNUM *bn) {
sqrt.c
327
} else if (!
BN_one
(x)) {
/external/boringssl/src/include/openssl/
bn.h
216
/*
BN_one
sets |bn| to one. It returns one on success or zero on allocation
218
OPENSSL_EXPORT int
BN_one
(BIGNUM *bn);
[
all
...]
/external/boringssl/src/crypto/ec/
simple.c
1201
if (!
BN_one
(prod_Z[0])) {
1279
if (!
BN_one
(&p->Z)) {
[
all
...]
Completed in 812 milliseconds