Home | History | Annotate | Download | only in pre_gen

Lines Matching refs:iy

297       register int iy;
308 for (iy = 0; iy < n->used; iy++) {
434 int iy;
448 iy = MIN(a->used-tx, ty+1);
451 for (iz = 0; iz < iy; ++iz) {
536 int tx, ty, iy;
550 iy = MIN(a->used-tx, ty+1);
553 for (iz = 0; iz < iy; iz++) {
614 * So basically you set up iy like before then you min it with
638 int tx, ty, iy;
656 iy = MIN(a->used-tx, ty+1);
662 iy = MIN(iy, (ty-tx+1)>>1);
665 for (iz = 0; iz < iy; iz++) {
4789 register int iy;
4803 for (iy = 0; iy < n->used; iy++) {
6911 int ix, iy, iw;
6919 iy = mp_count_bits(a);
6924 for (ix = DIGIT_BIT; ix < iy; ix++) {
6967 int ix, iy;
6975 for (iy = ix = 0; ix < a->used; ix++) {
6977 ++iy;
6980 return (iy >= (a->used/2)) ? MP_YES : MP_NO;
8723 int ix, iy;
8727 iy = len - 1;
8728 while (ix < iy) {
8730 s[ix] = s[iy];
8731 s[iy] = t;
8733 --iy;
9138 int res, pa, pb, ix, iy;
9175 for (iy = 0; iy < pb; iy++) {
9188 if (ix + iy < digs) {
9232 int res, pa, pb, ix, iy;
9256 /* left hand side of A[ix] * B[iy] */
9265 for (iy = digs - ix; iy < pb; iy++) {
9314 int res, ix, iy, pa;
9338 /* left hand side of A[ix] * A[iy] */
9344 for (iy = ix + 1; iy < pa; iy++) {
9346 r = ((mp_word)tmpx) * ((mp_word)a->dp[iy]);