OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MP_YES
(Results
1 - 6
of
6
) sorted by relevancy
/src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
tommath.h
149
#define
MP_YES
1 /* yes response */
223
#define mp_iszero(a) (((a)->used == 0) ?
MP_YES
: MP_NO)
224
#define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ?
MP_YES
: MP_NO)
225
#define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ?
MP_YES
: MP_NO)
226
#define mp_isneg(a) (((a)->sign) ?
MP_YES
: MP_NO)
/src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
rsa-ltm.c
541
CHECK(mp_find_prime(&p,128),
MP_YES
);
553
CHECK(mp_find_prime(&q,128),
MP_YES
);
/src/external/bsd/wpa/dist/src/tls/
libtommath.c
97
#define
MP_YES
1 /* yes response */
125
#define mp_iszero(a) (((a)->used == 0) ?
MP_YES
: MP_NO)
126
#define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ?
MP_YES
: MP_NO)
127
#define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ?
MP_YES
: MP_NO)
634
if (mp_reduce_is_2k_l(P) ==
MP_YES
) {
1657
c->sign = (mp_iszero(c) ==
MP_YES
) ? MP_ZPOS : n2;
1661
d->sign = (mp_iszero(d) ==
MP_YES
) ? MP_ZPOS : n;
/src/sbin/nvmectl/
bignum.c
78
#define
MP_YES
1
92
#define MP_ISZERO(a) (((a)->used == 0) ?
MP_YES
: MP_NO)
990
if (MP_ISZERO(b) ==
MP_YES
) {
1307
if (MP_ISZERO(b) ==
MP_YES
) {
1431
if (b->sign == MP_NEG || MP_ISZERO(b) ==
MP_YES
) {
1583
if (b->sign == MP_NEG || MP_ISZERO(b) ==
MP_YES
) {
1625
return
MP_YES
;
1633
return (iy >= (a->used/2)) ?
MP_YES
: MP_NO;
3491
return
MP_YES
;
3510
return
MP_YES
;
[
all
...]
/src/crypto/external/bsd/netpgp/dist/src/libbn/
bignum.c
85
#define
MP_YES
1
95
#define mp_iszero(a) (((a)->used == 0) ?
MP_YES
: MP_NO)
1693
return
MP_YES
;
1701
return (iy >= (a->used/2)) ?
MP_YES
: MP_NO;
3532
return
MP_YES
;
3550
return
MP_YES
;
4401
if (mp_reduce_is_2k_l(P) ==
MP_YES
) {
4601
*result =
MP_YES
;
4891
*result =
MP_YES
;
4933
if (res ==
MP_YES
) {
[
all
...]
/src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
bignum.c
82
#define
MP_YES
1
96
#define MP_ISZERO(a) (((a)->used == 0) ?
MP_YES
: MP_NO)
994
if (MP_ISZERO(b) ==
MP_YES
) {
1311
if (MP_ISZERO(b) ==
MP_YES
) {
1435
if (b->sign == MP_NEG || MP_ISZERO(b) ==
MP_YES
) {
1587
if (b->sign == MP_NEG || MP_ISZERO(b) ==
MP_YES
) {
1629
return
MP_YES
;
1637
return (iy >= (a->used/2)) ?
MP_YES
: MP_NO;
3495
return
MP_YES
;
3514
return
MP_YES
;
[
all
...]
Completed in 71 milliseconds
Indexes created Sun Mar 15 00:25:29 UTC 2026