Home | History | Annotate | Download | only in libtommath

Lines Matching full:res

43   int           res;
66 if ((res = mp_mod_d(arg,105,&c)) != MP_OKAY) {
67 return res;
74 if ((res = mp_init_set_int(&t,11L*13L*17L*19L*23L*29L*31L)) != MP_OKAY) {
75 return res;
77 if ((res = mp_mod(arg,&t,&t)) != MP_OKAY) {
82 * free "t" so the easiest way is to goto ERR. We know that res
94 if ((res = mp_sqrt(arg,&t)) != MP_OKAY) {
97 if ((res = mp_sqr(&t,&t)) != MP_OKAY) {
103 return res;