Home | History | Annotate | Download | only in target-i386

Lines Matching refs:SHR

1390 #define SHR(v, i) (i < 64 && i > -64 ? i > 0 ? v >> (i) : (v << -(i)) : 0)
1392 r.Q(0) = SHR(s->Q(0), shift - 0) |
1393 SHR(d->Q(0), shift - 64);
1395 r.Q(0) = SHR(s->Q(0), shift - 0) |
1396 SHR(s->Q(1), shift - 64) |
1397 SHR(d->Q(0), shift - 128) |
1398 SHR(d->Q(1), shift - 192);
1399 r.Q(1) = SHR(s->Q(0), shift + 64) |
1400 SHR(s->Q(1), shift - 0) |
1401 SHR(d->Q(0), shift - 64) |
1402 SHR(d->Q(1), shift - 128);
1404 #undef SHR