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_PREC
(Results
1 - 5
of
5
) sorted by relevancy
/src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
tommath.h
169
#ifndef
MP_PREC
171
#define
MP_PREC
32 /* default digits of precision */
173
#define
MP_PREC
8 /* default digits of precision */
/src/external/bsd/wpa/dist/src/tls/
libtommath.c
106
#ifndef
MP_PREC
108
#define
MP_PREC
32 /* default digits of precision */
110
#define
MP_PREC
8 /* default digits of precision */
372
a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) *
MP_PREC
);
378
for (i = 0; i <
MP_PREC
; i++) {
385
a->alloc =
MP_PREC
;
1263
/* ensure there are always at least
MP_PREC
digits extra on top */
1264
size += (
MP_PREC
* 2) - (size %
MP_PREC
);
2497
size += (
MP_PREC
* 2) - (size % MP_PREC)
[
all
...]
/src/sbin/nvmectl/
bignum.c
71
#define
MP_PREC
32
131
/* ensure there are always at least
MP_PREC
digits extra on top */
132
size += (
MP_PREC
* 2) - (size %
MP_PREC
);
426
a->dp = allocate(1, sizeof(*a->dp) *
MP_PREC
);
432
memset(a->dp, 0x0,
MP_PREC
* sizeof(*a->dp));
437
a->alloc =
MP_PREC
;
503
size += (
MP_PREC
* 2) - (size %
MP_PREC
);
/src/crypto/external/bsd/netpgp/dist/src/libbn/
bignum.c
78
#define
MP_PREC
32
132
/* ensure there are always at least
MP_PREC
digits extra on top */
133
size += (
MP_PREC
* 2) - (size %
MP_PREC
);
470
a->dp = netpgp_allocate(1, sizeof (*a->dp) *
MP_PREC
);
476
for (i = 0; i <
MP_PREC
; i++) {
483
a->alloc =
MP_PREC
;
556
size += (
MP_PREC
* 2) - (size %
MP_PREC
);
/src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
bignum.c
75
#define
MP_PREC
32
135
/* ensure there are always at least
MP_PREC
digits extra on top */
136
size += (
MP_PREC
* 2) - (size %
MP_PREC
);
430
a->dp = allocate(1, sizeof(*a->dp) *
MP_PREC
);
436
memset(a->dp, 0x0,
MP_PREC
* sizeof(*a->dp));
441
a->alloc =
MP_PREC
;
507
size += (
MP_PREC
* 2) - (size %
MP_PREC
);
Completed in 36 milliseconds
Indexes created Sun Mar 01 05:31:48 UTC 2026