Home | History | Annotate | Download | only in libtommath

Lines Matching refs:MP_OKAY

28   if ((res = mp_init_copy (&q, x)) != MP_OKAY) {
37 if ((res = mp_mul (&q, mu, &q)) != MP_OKAY) {
42 if ((res = s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
46 if ((res = fast_s_mp_mul_high_digs (&q, mu, &q, um)) != MP_OKAY) {
61 if ((res = mp_mod_2d (x, DIGIT_BIT * (um + 1), x)) != MP_OKAY) {
66 if ((res = s_mp_mul_digs (&q, m, &q, um + 1)) != MP_OKAY) {
71 if ((res = mp_sub (x, &q, x)) != MP_OKAY) {
78 if ((res = mp_lshd (&q, um + 1)) != MP_OKAY)
80 if ((res = mp_add (x, &q, x)) != MP_OKAY)
86 if ((res = s_mp_sub (x, m, x)) != MP_OKAY) {