OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mp_result
(Results
1 - 7
of
7
) sorted by relevancy
/src/external/mit/isl/dist/imath/
imrat.h
59
mp_result
mp_rat_init(mp_rat r);
69
mp_result
mp_rat_reduce(mp_rat r);
76
mp_result
mp_rat_init_size(mp_rat r, mp_size n_prec, mp_size d_prec);
80
mp_result
mp_rat_init_copy(mp_rat r, mp_rat old);
84
mp_result
mp_rat_set_value(mp_rat r, mp_small numer, mp_small denom);
88
mp_result
mp_rat_set_uvalue(mp_rat r, mp_usmall numer, mp_usmall denom);
98
mp_result
mp_rat_numer(mp_rat r, mp_int z);
104
mp_result
mp_rat_denom(mp_rat r, mp_int z);
115
mp_result
mp_rat_copy(mp_rat a, mp_rat c);
121
mp_result
mp_rat_abs(mp_rat a, mp_rat c)
[
all
...]
imath.h
40
typedef int
mp_result
;
typedef
71
extern const
mp_result
MP_OK;
72
extern const
mp_result
MP_FALSE;
73
extern const
mp_result
MP_TRUE;
74
extern const
mp_result
MP_MEMORY;
75
extern const
mp_result
MP_RANGE;
76
extern const
mp_result
MP_UNDEF;
77
extern const
mp_result
MP_TRUNC;
78
extern const
mp_result
MP_BADARG;
79
extern const
mp_result
MP_MINERR
[
all
...]
imrat.c
46
static
mp_result
s_rat_reduce(mp_rat r);
49
static
mp_result
s_rat_combine(mp_rat a, mp_rat b, mp_rat c,
50
mp_result
(*comb_f)(mp_int, mp_int, mp_int));
52
mp_result
mp_rat_init(mp_rat r) {
53
mp_result
res;
77
mp_result
mp_rat_reduce(mp_rat r) { return s_rat_reduce(r); }
79
mp_result
mp_rat_init_size(mp_rat r, mp_size n_prec, mp_size d_prec) {
80
mp_result
res;
93
mp_result
mp_rat_init_copy(mp_rat r, mp_rat old) {
94
mp_result
res
[
all
...]
imath.c
34
const
mp_result
MP_OK = 0; /* no error, all is well */
35
const
mp_result
MP_FALSE = 0; /* boolean false */
36
const
mp_result
MP_TRUE = -1; /* boolean true */
37
const
mp_result
MP_MEMORY = -2; /* out of memory */
38
const
mp_result
MP_RANGE = -3; /* argument out of range */
39
const
mp_result
MP_UNDEF = -4; /* result undefined */
40
const
mp_result
MP_TRUNC = -5; /* output truncated */
41
const
mp_result
MP_BADARG = -6; /* invalid null argument */
42
const
mp_result
MP_MINERR = -6;
140
mp_result
err;
[
all
...]
gmp_compat.c
351
mp_result
res = mp_int_read_string(rop, base, str);
359
mp_result
resN;
360
mp_result
resD;
423
mp_result
res = mp_int_to_uint(op, &out);
441
mp_result
res = mp_int_to_int(op, &out);
803
mp_result
res;
/src/external/mit/isl/dist/
isl_imath.c
20
mp_result
res = mp_int_to_int(op, &out);
29
mp_result
res = mp_int_to_uint(op, &out);
isl_test_imath.c
30
mp_result
retval;
Completed in 26 milliseconds
Indexes created Fri Jun 19 00:25:02 UTC 2026