Searched refs:sqr (Results 1 – 2 of 2) sorted by relevance
272 #define sqr(x) (long int)(x)*(x) macro307 radius = sqrt((float)(sqr(x0 - x) + sqr(y0 - y))); in conicarc()412 delta = sqr(Xs + 1) in conicarc()413 + sqr(Ys - 1) in conicarc()414 -sqr(xs) in conicarc()415 -sqr(ys); in conicarc()430 Ys = Yc = sqrt((float)(sqr(xs) + sqr(ys))); in conicarc()431 delta = sqr(Xs + 1) + sqr(Ys - 1) - sqr(xs) - sqr(ys); in conicarc()
920 mp_err mp_sqr(const mp_int *a, mp_int *sqr) in mp_sqr() argument929 ARGCHK(a != NULL && sqr != NULL, MP_BADARG); in mp_sqr()931 if (a == sqr) { in mp_sqr()941 if (ix > MP_ALLOC(sqr)) { in mp_sqr()942 MP_USED(sqr) = 1; in mp_sqr()943 MP_CHECKOK( s_mp_grow(sqr, ix) ); in mp_sqr()945 MP_USED(sqr) = ix; in mp_sqr()946 MP_DIGIT(sqr, 0) = 0; in mp_sqr()951 s_mp_sqr_comba_4(a, sqr); in mp_sqr()955 s_mp_sqr_comba_8(a, sqr); in mp_sqr()[all …]