OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MP_PREC
(Results
1 - 7
of
7
) sorted by null
/external/dropbear/libtommath/
bn_mp_init.c
24
a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) *
MP_PREC
);
30
for (i = 0; i <
MP_PREC
; i++) {
37
a->alloc =
MP_PREC
;
bn_mp_init_size.c
24
size += (
MP_PREC
* 2) - (size %
MP_PREC
);
bn_mp_grow.c
26
/* ensure there are always at least
MP_PREC
digits extra on top */
27
size += (
MP_PREC
* 2) - (size %
MP_PREC
);
tommath.h
167
#ifndef
MP_PREC
169
#define
MP_PREC
32 /* default digits of precision */
171
#define
MP_PREC
8 /* default digits of precision */
/external/wpa_supplicant/
libtommath.c
80
#ifndef
MP_PREC
82
#define
MP_PREC
32 /* default digits of precision */
84
#define
MP_PREC
8 /* default digits of precision */
327
a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) *
MP_PREC
);
333
for (i = 0; i <
MP_PREC
; i++) {
340
a->alloc =
MP_PREC
;
1207
/* ensure there are always at least
MP_PREC
digits extra on top */
1208
size += (
MP_PREC
* 2) - (size %
MP_PREC
);
[
all
...]
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
libtommath.c
103
#ifndef
MP_PREC
105
#define
MP_PREC
32 /* default digits of precision */
107
#define
MP_PREC
8 /* default digits of precision */
367
a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) *
MP_PREC
);
373
for (i = 0; i <
MP_PREC
; i++) {
380
a->alloc =
MP_PREC
;
1255
/* ensure there are always at least
MP_PREC
digits extra on top */
1256
size += (
MP_PREC
* 2) - (size %
MP_PREC
);
[
all
...]
/external/dropbear/libtommath/pre_gen/
mpi.c
[
all
...]
Completed in 225 milliseconds