ESP-IDF
mp_int
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
mp_int
mp_int struct
Syntax
Show:
Summary
Declaration
from
libtommath.h:117
typedef
struct
{
int
used
,
alloc
,
sign
;
mp_digit
*
dp
;
}
mp_int
;
Fields
Field
Declared as
mp_int::used
int
mp_int::alloc
int
used
,
mp_int::sign
int
used
,
alloc
,
mp_int::dp
mp_digit
*
Related Functions
Found 45 other functions taking a
mp_int
argument:
Function
mp_clear()
mp_init()
mp_clamp()
mp_copy()
mp_exch()
mp_grow()
mp_zero()
mp_count_bits()
mp_mul()
mp_cmp_mag()
s_mp_sub()
mp_sqr()
mp_div_2d()
mp_set()
mp_mul_2d()
mp_rshd()
mp_add()
mp_init_size()
mp_abs()
mp_2expt()
mp_mod_2d()
mp_div()
s_mp_mul_digs()
mp_init_copy()
mp_mod()
mp_cmp()
mp_sub()
mp_lshd()
s_mp_add()
s_mp_mul_high_digs()
mp_reduce_2k_l()
mp_reduce_2k_setup_l()
mp_reduce_setup()
mp_reduce()
mp_cmp_d()
mp_unsigned_bin_size()
fast_s_mp_mul_digs()
s_mp_exptmod()
mp_init_multi()
mp_clear_multi()
s_mp_sqr()
mp_mulmod()
mp_exptmod()
mp_read_unsigned_bin()
mp_to_unsigned_bin()
Examples
References
from
examples
Code
Location
Scope
Referrer
typedef
struct
{
libtommath.h:117
}
mp_int
;
libtommath.h:120
struct
bignum
*
n
=
os_zalloc
(
sizeof
(
mp_int
)
)
;
bignum.c:32
bignum_init()
if
(
mp_init
(
(
mp_int
*
)
n
)
!=
MP_OKAY
)
{
bignum.c:35
bignum_init()
mp_clear
(
(
mp_int
*
)
n
)
;
bignum.c:50
bignum_deinit()
return
mp_unsigned_bin_size
(
(
mp_int
*
)
n
)
;
bignum.c:63
bignum_get_unsigned_bin_len()
size_t
need
=
mp_unsigned_bin_size
(
(
mp_int
*
)
n
)
;
bignum.c:77
bignum_get_unsigned_bin()
if
(
mp_to_unsigned_bin
(
(
mp_int
*
)
n
,
buf
)
!=
MP_OKAY
)
{
bignum.c:82
bignum_get_unsigned_bin()
if
(
mp_read_unsigned_bin
(
(
mp_int
*
)
n
,
(
u8
*
)
buf
,
len
)
!=
MP_OKAY
)
{
bignum.c:101
bignum_set_unsigned_bin()
return
mp_cmp
(
(
mp_int
*
)
a
,
(
mp_int
*
)
b
)
;
bignum.c:117
bignum_cmp()
return
mp_cmp_d
(
(
mp_int
*
)
a
,
b
)
;
bignum.c:129
bignum_cmp_d()
if
(
mp_add
(
(
mp_int
*
)
a
,
(
mp_int
*
)
b
,
(
mp_int
*
)
c
)
!=
MP_OKAY
)
{
bignum.c:143
bignum_add()
if
(
mp_sub
(
(
mp_int
*
)
a
,
(
mp_int
*
)
b
,
(
mp_int
*
)
c
)
!=
MP_OKAY
)
{
bignum.c:161
bignum_sub()
if
(
mp_mul
(
(
mp_int
*
)
a
,
(
mp_int
*
)
b
,
(
mp_int
*
)
c
)
!=
MP_OKAY
)
{
bignum.c:179
bignum_mul()
if
(
mp_mulmod
(
(
mp_int
*
)
a
,
(
mp_int
*
)
b
,
(
mp_int
*
)
c
,
(
mp_int
*
)
d
)
bignum.c:198
bignum_mulmod()
if
(
mp_exptmod
(
(
mp_int
*
)
a
,
(
mp_int
*
)
b
,
(
mp_int
*
)
c
,
(
mp_int
*
)
d
)
bignum.c:218
bignum_exptmod()
}
mp_int
;
libtommath.h:120
mp_int
static
int
s_mp_exptmod
(
mp_int
*
G
,
mp_int
*
X
,
mp_int
*
P
,
mp_int
*
Y
,
int
redmode
)
;
libtommath.h:131
s_mp_exptmod()
s_mp_exptmod()::G
static
int
s_mp_mul_digs
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
,
int
digs
)
;
libtommath.h:132
s_mp_mul_digs()
s_mp_mul_digs()::a
static
int
s_mp_sqr
(
mp_int
*
a
,
mp_int
*
b
)
;
libtommath.h:133
s_mp_sqr()
s_mp_sqr()::a
static
int
s_mp_mul_high_digs
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
,
int
digs
)
;
libtommath.h:134
s_mp_mul_high_digs()
s_mp_mul_high_digs()::a
static
int
fast_s_mp_mul_digs
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
,
int
digs
)
;
libtommath.h:136
fast_s_mp_mul_digs()
fast_s_mp_mul_digs()::a
static
int
mp_init_multi
(
mp_int
*
mp
,
...
)
;
libtommath.h:139
mp_init_multi()
mp_init_multi()::mp
static
void
mp_clear_multi
(
mp_int
*
mp
,
...
)
;
libtommath.h:142
mp_clear_multi()
mp_clear_multi()::mp
static
int
mp_lshd
(
mp_int
*
a
,
int
b
)
;
libtommath.h:144
mp_lshd()
mp_lshd()::a
static
void
mp_set
(
mp_int
*
a
,
mp_digit
b
)
;
libtommath.h:145
mp_set()
mp_set()::a
static
void
mp_clamp
(
mp_int
*
a
)
;
libtommath.h:146
mp_clamp()
mp_clamp()::a
static
void
mp_exch
(
mp_int
*
a
,
mp_int
*
b
)
;
libtommath.h:147
mp_exch()
mp_exch()::a
static
void
mp_rshd
(
mp_int
*
a
,
int
b
)
;
libtommath.h:148
mp_rshd()
mp_rshd()::a
static
void
mp_zero
(
mp_int
*
a
)
;
libtommath.h:149
mp_zero()
mp_zero()::a
static
int
mp_mod_2d
(
mp_int
*
a
,
int
b
,
mp_int
*
c
)
;
libtommath.h:150
mp_mod_2d()
mp_mod_2d()::a
static
int
mp_div_2d
(
mp_int
*
a
,
int
b
,
mp_int
*
c
,
mp_int
*
d
)
;
libtommath.h:151
mp_div_2d()
mp_div_2d()::a
static
int
mp_init_copy
(
mp_int
*
a
,
mp_int
*
b
)
;
libtommath.h:152
mp_init_copy()
mp_init_copy()::a
static
int
mp_mul_2d
(
mp_int
*
a
,
int
b
,
mp_int
*
c
)
;
libtommath.h:153
mp_mul_2d()
mp_mul_2d()::a
static
int
mp_copy
(
mp_int
*
a
,
mp_int
*
b
)
;
libtommath.h:159
mp_copy()
mp_copy()::a
static
int
mp_count_bits
(
mp_int
*
a
)
;
libtommath.h:160
mp_count_bits()
mp_count_bits()::a
static
int
mp_div
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
,
mp_int
*
d
)
;
libtommath.h:161
mp_div()
mp_div()::a
static
int
mp_mod
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
)
;
libtommath.h:162
mp_mod()
mp_mod()::a
static
int
mp_grow
(
mp_int
*
a
,
int
size
)
;
libtommath.h:163
mp_grow()
mp_grow()::a
static
int
mp_cmp_mag
(
mp_int
*
a
,
mp_int
*
b
)
;
libtommath.h:164
mp_cmp_mag()
mp_cmp_mag()::a
static
int
mp_abs
(
mp_int
*
a
,
mp_int
*
b
)
;
libtommath.h:166
mp_abs()
mp_abs()::a
static
int
mp_sqr
(
mp_int
*
a
,
mp_int
*
b
)
;
libtommath.h:168
mp_sqr()
mp_sqr()::a
static
int
mp_reduce_2k_l
(
mp_int
*
a
,
mp_int
*
n
,
mp_int
*
d
)
;
libtommath.h:169
mp_reduce_2k_l()
mp_reduce_2k_l()::a
static
int
mp_reduce_2k_setup_l
(
mp_int
*
a
,
mp_int
*
d
)
;
libtommath.h:170
mp_reduce_2k_setup_l()
mp_reduce_2k_setup_l()::a
static
int
mp_2expt
(
mp_int
*
a
,
int
b
)
;
libtommath.h:171
mp_2expt()
mp_2expt()::a
static
int
mp_reduce_setup
(
mp_int
*
a
,
mp_int
*
b
)
;
libtommath.h:172
mp_reduce_setup()
mp_reduce_setup()::a
static
int
mp_reduce
(
mp_int
*
x
,
mp_int
*
m
,
mp_int
*
mu
)
;
libtommath.h:173
mp_reduce()
mp_reduce()::x
static
int
mp_init_size
(
mp_int
*
a
,
int
size
)
;
libtommath.h:174
mp_init_size()
mp_init_size()::a
s_mp_add
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
)
libtommath.h:211
s_mp_add()
s_mp_add()::a
mp_int
*
x
;
libtommath.h:213
s_mp_add()
s_mp_sub
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
)
libtommath.h:300
s_mp_sub()
s_mp_sub()::a
mp_init
(
mp_int
*
a
)
libtommath.h:368
mp_init()
mp_init()::a
mp_clear
(
mp_int
*
a
)
libtommath.h:395
mp_clear()
mp_clear()::a
mp_add
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
)
libtommath.h:419
mp_add()
mp_add()::a
mp_sub
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
)
libtommath.h:452
mp_sub()
mp_sub()::a
mp_mul
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
)
libtommath.h:490
mp_mul()
mp_mul()::a
mp_mulmod
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
,
mp_int
*
d
)
libtommath.h:538
mp_mulmod()
mp_mulmod()::a
mp_int
t
;
libtommath.h:541
mp_mulmod()
mp_mod
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
)
libtommath.h:559
mp_mod()
mp_mod()::a
mp_int
t
;
libtommath.h:561
mp_mod()
mp_exptmod
(
mp_int
*
G
,
mp_int
*
X
,
mp_int
*
P
,
mp_int
*
Y
)
libtommath.h:591
mp_exptmod()
mp_exptmod()::G
mp_cmp
(
mp_int
*
a
,
mp_int
*
b
)
libtommath.h:683
mp_cmp()
mp_cmp()::a
mp_cmp_d
(
mp_int
*
a
,
mp_digit
b
)
libtommath.h:706
mp_cmp_d()
mp_cmp_d()::a
mp_unsigned_bin_size
(
mp_int
*
a
)
libtommath.h:762
mp_unsigned_bin_size()
mp_unsigned_bin_size()::a
mp_cmp_mag
(
mp_int
*
a
,
mp_int
*
b
)
libtommath.h:929
mp_cmp_mag()
mp_cmp_mag()::a
mp_read_unsigned_bin
(
mp_int
*
a
,
const
unsigned
char
*
b
,
int
c
)
libtommath.h:965
mp_read_unsigned_bin()
mp_read_unsigned_bin()::a
mp_to_unsigned_bin
(
mp_int
*
a
,
unsigned
char
*
b
)
libtommath.h:1001
mp_to_unsigned_bin()
mp_to_unsigned_bin()::a
mp_int
t
;
libtommath.h:1004
mp_to_unsigned_bin()
mp_div_2d
(
mp_int
*
a
,
int
b
,
mp_int
*
c
,
mp_int
*
d
)
libtommath.h:1030
mp_div_2d()
mp_div_2d()::a
mp_int
t
;
libtommath.h:1034
mp_div_2d()
mp_init_copy
(
mp_int
*
a
,
mp_int
*
b
)
libtommath.h:1107
mp_init_copy()
mp_init_copy()::a
mp_zero
(
mp_int
*
a
)
libtommath.h:1120
mp_zero()
mp_zero()::a
mp_copy
(
mp_int
*
a
,
mp_int
*
b
)
libtommath.h:1137
mp_copy()
mp_copy()::a
mp_rshd
(
mp_int
*
a
,
int
b
)
libtommath.h:1185
mp_rshd()
mp_rshd()::a
mp_exch
(
mp_int
*
a
,
mp_int
*
b
)
libtommath.h:1240
mp_exch()
mp_exch()::a
mp_int
t
;
libtommath.h:1242
mp_exch()
mp_clamp
(
mp_int
*
a
)
libtommath.h:1258
mp_clamp()
mp_clamp()::a
mp_grow
(
mp_int
*
a
,
int
size
)
libtommath.h:1276
mp_grow()
mp_grow()::a
mp_abs
(
mp_int
*
a
,
mp_int
*
b
)
libtommath.h:1318
mp_abs()
mp_abs()::a
mp_set
(
mp_int
*
a
,
mp_digit
b
)
libtommath.h:1339
mp_set()
mp_set()::a
mp_mul_2d
(
mp_int
*
a
,
int
b
,
mp_int
*
c
)
libtommath.h:1400
mp_mul_2d()
mp_mul_2d()::a
mp_init_multi
(
mp_int
*
mp
,
...
)
libtommath.h:1466
mp_init_multi()
mp_init_multi()::mp
mp_int
*
cur_arg
=
mp
;
libtommath.h:1470
mp_init_multi()
cur_arg
=
va_arg
(
clean_args
,
mp_int
*
)
;
libtommath.h:1489
mp_init_multi()
cur_arg
=
va_arg
(
args
,
mp_int
*
)
;
libtommath.h:1496
mp_init_multi()
mp_clear_multi
(
mp_int
*
mp
,
...
)
libtommath.h:1506
mp_clear_multi()
mp_clear_multi()::mp
mp_int
*
next_mp
=
mp
;
libtommath.h:1508
mp_clear_multi()
next_mp
=
va_arg
(
args
,
mp_int
*
)
;
libtommath.h:1513
mp_clear_multi()
mp_lshd
(
mp_int
*
a
,
int
b
)
libtommath.h:1522
mp_lshd()
mp_lshd()::a
mp_count_bits
(
mp_int
*
a
)
libtommath.h:1570
mp_count_bits()
mp_count_bits()::a
mp_mod_2d
(
mp_int
*
a
,
int
b
,
mp_int
*
c
)
libtommath.h:1595
mp_mod_2d()
mp_mod_2d()::a
mp_div
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
,
mp_int
*
d
)
libtommath.h:1632
mp_div()
mp_div()::a
mp_int
ta
,
tb
,
tq
,
q
;
libtommath.h:1634
mp_div()
s_mp_exptmod
(
mp_int
*
G
,
mp_int
*
X
,
mp_int
*
P
,
mp_int
*
Y
,
int
redmode
)
libtommath.h:1908
s_mp_exptmod()
s_mp_exptmod()::G
mp_int
M
[
TAB_SIZE
]
,
res
,
mu
;
libtommath.h:1910
s_mp_exptmod()
int
(
*
redux
)
(
mp_int
*
,
mp_int
*
,
mp_int
*
)
;
libtommath.h:1913
mp_sqr
(
mp_int
*
a
,
mp_int
*
b
)
libtommath.h:2137
mp_sqr()
mp_sqr()::a
mp_reduce_2k_l
(
mp_int
*
a
,
mp_int
*
n
,
mp_int
*
d
)
libtommath.h:2179
mp_reduce_2k_l()
mp_reduce_2k_l()::a
mp_int
q
;
libtommath.h:2181
mp_reduce_2k_l()
mp_reduce_2k_setup_l
(
mp_int
*
a
,
mp_int
*
d
)
libtommath.h:2218
mp_reduce_2k_setup_l()
mp_reduce_2k_setup_l()::a
mp_int
tmp
;
libtommath.h:2221
mp_reduce_2k_setup_l()
mp_2expt
(
mp_int
*
a
,
int
b
)
libtommath.h:2247
mp_2expt()
mp_2expt()::a
mp_reduce_setup
(
mp_int
*
a
,
mp_int
*
b
)
libtommath.h:2273
mp_reduce_setup()
mp_reduce_setup()::a
mp_reduce
(
mp_int
*
x
,
mp_int
*
m
,
mp_int
*
mu
)
libtommath.h:2289
mp_reduce()
mp_reduce()::x
mp_int
q
;
libtommath.h:2291
mp_reduce()
s_mp_mul_digs
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
,
int
digs
)
libtommath.h:2373
s_mp_mul_digs()
s_mp_mul_digs()::a
mp_int
t
;
libtommath.h:2375
s_mp_mul_digs()
fast_s_mp_mul_digs
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
,
int
digs
)
libtommath.h:2456
fast_s_mp_mul_digs()
fast_s_mp_mul_digs()::a
mp_init_size
(
mp_int
*
a
,
int
size
)
libtommath.h:2529
mp_init_size()
mp_init_size()::a
s_mp_sqr
(
mp_int
*
a
,
mp_int
*
b
)
libtommath.h:2558
s_mp_sqr()
s_mp_sqr()::a
mp_int
t
;
libtommath.h:2560
s_mp_sqr()
s_mp_mul_high_digs
(
mp_int
*
a
,
mp_int
*
b
,
mp_int
*
c
,
int
digs
)
libtommath.h:2625
s_mp_mul_high_digs()
s_mp_mul_high_digs()::a
mp_int
t
;
libtommath.h:2627
s_mp_mul_high_digs()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Instance
Scope
Location
Project
s_mp_exptmod()::G
s_mp_exptmod()
libtommath.h:131
s_mp_exptmod()::X
s_mp_exptmod()
libtommath.h:131
s_mp_exptmod()::P
s_mp_exptmod()
libtommath.h:131
s_mp_exptmod()::Y
s_mp_exptmod()
libtommath.h:131
s_mp_mul_digs()::a
s_mp_mul_digs()
libtommath.h:132
s_mp_mul_digs()::b
s_mp_mul_digs()
libtommath.h:132
s_mp_mul_digs()::c
s_mp_mul_digs()
libtommath.h:132
s_mp_sqr()::a
s_mp_sqr()
libtommath.h:133
s_mp_sqr()::b
s_mp_sqr()
libtommath.h:133
s_mp_mul_high_digs()::a
s_mp_mul_high_digs()
libtommath.h:134
s_mp_mul_high_digs()::b
s_mp_mul_high_digs()
libtommath.h:134
s_mp_mul_high_digs()::c
s_mp_mul_high_digs()
libtommath.h:134
fast_s_mp_mul_digs()::a
fast_s_mp_mul_digs()
libtommath.h:136
fast_s_mp_mul_digs()::b
fast_s_mp_mul_digs()
libtommath.h:136
fast_s_mp_mul_digs()::c
fast_s_mp_mul_digs()
libtommath.h:136
mp_init_multi()::mp
mp_init_multi()
libtommath.h:139
mp_clear_multi()::mp
mp_clear_multi()
libtommath.h:142
mp_lshd()::a
mp_lshd()
libtommath.h:144
mp_set()::a
mp_set()
libtommath.h:145
mp_clamp()::a
mp_clamp()
libtommath.h:146
mp_exch()::a
mp_exch()
libtommath.h:147
mp_exch()::b
mp_exch()
libtommath.h:147
mp_rshd()::a
mp_rshd()
libtommath.h:148
mp_zero()::a
mp_zero()
libtommath.h:149
mp_mod_2d()::a
mp_mod_2d()
libtommath.h:150
mp_mod_2d()::c
mp_mod_2d()
libtommath.h:150
mp_div_2d()::a
mp_div_2d()
libtommath.h:151
mp_div_2d()::c
mp_div_2d()
libtommath.h:151
mp_div_2d()::d
mp_div_2d()
libtommath.h:151
mp_init_copy()::a
mp_init_copy()
libtommath.h:152
mp_init_copy()::b
mp_init_copy()
libtommath.h:152
mp_mul_2d()::a
mp_mul_2d()
libtommath.h:153
mp_mul_2d()::c
mp_mul_2d()
libtommath.h:153
mp_copy()::a
mp_copy()
libtommath.h:159
mp_copy()::b
mp_copy()
libtommath.h:159
mp_count_bits()::a
mp_count_bits()
libtommath.h:160
mp_div()::a
mp_div()
libtommath.h:161
mp_div()::b
mp_div()
libtommath.h:161
mp_div()::c
mp_div()
libtommath.h:161
mp_div()::d
mp_div()
libtommath.h:161
mp_mod()::a
mp_mod()
libtommath.h:162
mp_mod()::b
mp_mod()
libtommath.h:162
mp_mod()::c
mp_mod()
libtommath.h:162
mp_grow()::a
mp_grow()
libtommath.h:163
mp_cmp_mag()::a
mp_cmp_mag()
libtommath.h:164
mp_cmp_mag()::b
mp_cmp_mag()
libtommath.h:164
mp_abs()::a
mp_abs()
libtommath.h:166
mp_abs()::b
mp_abs()
libtommath.h:166
mp_sqr()::a
mp_sqr()
libtommath.h:168
mp_sqr()::b
mp_sqr()
libtommath.h:168
mp_reduce_2k_l()::a
mp_reduce_2k_l()
libtommath.h:169
mp_reduce_2k_l()::n
mp_reduce_2k_l()
libtommath.h:169
mp_reduce_2k_l()::d
mp_reduce_2k_l()
libtommath.h:169
mp_reduce_2k_setup_l()::a
mp_reduce_2k_setup_l()
libtommath.h:170
mp_reduce_2k_setup_l()::d
mp_reduce_2k_setup_l()
libtommath.h:170
mp_2expt()::a
mp_2expt()
libtommath.h:171
mp_reduce_setup()::a
mp_reduce_setup()
libtommath.h:172
mp_reduce_setup()::b
mp_reduce_setup()
libtommath.h:172
mp_reduce()::x
mp_reduce()
libtommath.h:173
mp_reduce()::m
mp_reduce()
libtommath.h:173
mp_reduce()::mu
mp_reduce()
libtommath.h:173
mp_init_size()::a
mp_init_size()
libtommath.h:174
s_mp_add()::a
s_mp_add()
libtommath.h:211
s_mp_add()::b
s_mp_add()
libtommath.h:211
s_mp_add()::c
s_mp_add()
libtommath.h:211
s_mp_sub()::a
s_mp_sub()
libtommath.h:300
s_mp_sub()::b
s_mp_sub()
libtommath.h:300
s_mp_sub()::c
s_mp_sub()
libtommath.h:300
mp_init()::a
mp_init()
libtommath.h:368
mp_clear()::a
mp_clear()
libtommath.h:395
mp_add()::a
mp_add()
libtommath.h:419
mp_add()::b
mp_add()
libtommath.h:419
mp_add()::c
mp_add()
libtommath.h:419
mp_sub()::a
mp_sub()
libtommath.h:452
mp_sub()::b
mp_sub()
libtommath.h:452
mp_sub()::c
mp_sub()
libtommath.h:452
mp_mul()::a
mp_mul()
libtommath.h:490
mp_mul()::b
mp_mul()
libtommath.h:490
mp_mul()::c
mp_mul()
libtommath.h:490
mp_mulmod()::a
mp_mulmod()
libtommath.h:538
mp_mulmod()::b
mp_mulmod()
libtommath.h:538
mp_mulmod()::c
mp_mulmod()
libtommath.h:538
mp_mulmod()::d
mp_mulmod()
libtommath.h:538
mp_mod()::a
mp_mod()
libtommath.h:559
mp_mod()::b
mp_mod()
libtommath.h:559
mp_mod()::c
mp_mod()
libtommath.h:559
mp_exptmod()::G
mp_exptmod()
libtommath.h:591
mp_exptmod()::X
mp_exptmod()
libtommath.h:591
mp_exptmod()::P
mp_exptmod()
libtommath.h:591
mp_exptmod()::Y
mp_exptmod()
libtommath.h:591
mp_cmp()::a
mp_cmp()
libtommath.h:683
mp_cmp()::b
mp_cmp()
libtommath.h:683
mp_cmp_d()::a
mp_cmp_d()
libtommath.h:706
mp_unsigned_bin_size()::a
mp_unsigned_bin_size()
libtommath.h:762
mp_cmp_mag()::a
mp_cmp_mag()
libtommath.h:929
mp_cmp_mag()::b
mp_cmp_mag()
libtommath.h:929
mp_read_unsigned_bin()::a
mp_read_unsigned_bin()
libtommath.h:965
mp_to_unsigned_bin()::a
mp_to_unsigned_bin()
libtommath.h:1001
mp_div_2d()::a
mp_div_2d()
libtommath.h:1030
mp_div_2d()::c
mp_div_2d()
libtommath.h:1030
mp_div_2d()::d
mp_div_2d()
libtommath.h:1030
mp_init_copy()::a
mp_init_copy()
libtommath.h:1107
mp_init_copy()::b
mp_init_copy()
libtommath.h:1107
mp_zero()::a
mp_zero()
libtommath.h:1120
mp_copy()::a
mp_copy()
libtommath.h:1137
mp_copy()::b
mp_copy()
libtommath.h:1137
mp_rshd()::a
mp_rshd()
libtommath.h:1185
mp_exch()::a
mp_exch()
libtommath.h:1240
mp_exch()::b
mp_exch()
libtommath.h:1240
mp_clamp()::a
mp_clamp()
libtommath.h:1258
mp_grow()::a
mp_grow()
libtommath.h:1276
mp_abs()::a
mp_abs()
libtommath.h:1318
mp_abs()::b
mp_abs()
libtommath.h:1318
mp_set()::a
mp_set()
libtommath.h:1339
mp_mul_2d()::a
mp_mul_2d()
libtommath.h:1400
mp_mul_2d()::c
mp_mul_2d()
libtommath.h:1400
mp_init_multi()::mp
mp_init_multi()
libtommath.h:1466
mp_clear_multi()::mp
mp_clear_multi()
libtommath.h:1506
mp_lshd()::a
mp_lshd()
libtommath.h:1522
mp_count_bits()::a
mp_count_bits()
libtommath.h:1570
mp_mod_2d()::a
mp_mod_2d()
libtommath.h:1595
mp_mod_2d()::c
mp_mod_2d()
libtommath.h:1595
mp_div()::a
mp_div()
libtommath.h:1632
mp_div()::b
mp_div()
libtommath.h:1632
mp_div()::c
mp_div()
libtommath.h:1632
mp_div()::d
mp_div()
libtommath.h:1632
s_mp_exptmod()::G
s_mp_exptmod()
libtommath.h:1908
s_mp_exptmod()::X
s_mp_exptmod()
libtommath.h:1908
s_mp_exptmod()::P
s_mp_exptmod()
libtommath.h:1908
s_mp_exptmod()::Y
s_mp_exptmod()
libtommath.h:1908
mp_sqr()::a
mp_sqr()
libtommath.h:2137
mp_sqr()::b
mp_sqr()
libtommath.h:2137
mp_reduce_2k_l()::a
mp_reduce_2k_l()
libtommath.h:2179
mp_reduce_2k_l()::n
mp_reduce_2k_l()
libtommath.h:2179
mp_reduce_2k_l()::d
mp_reduce_2k_l()
libtommath.h:2179
mp_reduce_2k_setup_l()::a
mp_reduce_2k_setup_l()
libtommath.h:2218
mp_reduce_2k_setup_l()::d
mp_reduce_2k_setup_l()
libtommath.h:2218
mp_2expt()::a
mp_2expt()
libtommath.h:2247
mp_reduce_setup()::a
mp_reduce_setup()
libtommath.h:2273
mp_reduce_setup()::b
mp_reduce_setup()
libtommath.h:2273
mp_reduce()::x
mp_reduce()
libtommath.h:2289
mp_reduce()::m
mp_reduce()
libtommath.h:2289
mp_reduce()::mu
mp_reduce()
libtommath.h:2289
s_mp_mul_digs()::a
s_mp_mul_digs()
libtommath.h:2373
s_mp_mul_digs()::b
s_mp_mul_digs()
libtommath.h:2373
s_mp_mul_digs()::c
s_mp_mul_digs()
libtommath.h:2373
fast_s_mp_mul_digs()::a
fast_s_mp_mul_digs()
libtommath.h:2456
fast_s_mp_mul_digs()::b
fast_s_mp_mul_digs()
libtommath.h:2456
fast_s_mp_mul_digs()::c
fast_s_mp_mul_digs()
libtommath.h:2456
mp_init_size()::a
mp_init_size()
libtommath.h:2529
s_mp_sqr()::a
s_mp_sqr()
libtommath.h:2558
s_mp_sqr()::b
s_mp_sqr()
libtommath.h:2558
s_mp_mul_high_digs()::a
s_mp_mul_high_digs()
libtommath.h:2625
s_mp_mul_high_digs()::b
s_mp_mul_high_digs()
libtommath.h:2625
s_mp_mul_high_digs()::c
s_mp_mul_high_digs()
libtommath.h:2625
Lifecycle
from
examples
All items filtered out
All items filtered out