Home | History | Annotate | Download | only in aarch64

Lines Matching defs:shift_val

1728     int8_t shift_val = src2.Int(vform, i);
1732 if ((shift_val > CountLeadingSignBits(lj_src_val)) && (lj_src_val != 0)) {
1739 } else if ((shift_val > CountLeadingZeros(lj_src_val)) &&
1746 if (shift_val > 63) {
1748 } else if (shift_val < -63) {
1756 if (shift_val < 0) {
1758 shift_val = -shift_val;
1762 if (((usrc_val >> (shift_val - 1)) & 1) == 1) {
1766 usrc_val >>= shift_val;
1770 usrc_val |= (~UINT64_C(0) << (64 - shift_val));
1773 usrc_val <<= shift_val;
1788 int8_t shift_val = src2.Int(vform, i);
1792 if ((shift_val > CountLeadingZeros(lj_src_val)) && (lj_src_val != 0)) {
1797 if ((shift_val > 63) || (shift_val < -64)) {
1800 if (shift_val < 0) {
1802 if (((src_val >> (-shift_val - 1)) & 1) == 1) {
1806 if (shift_val == -64) {
1809 src_val >>= -shift_val;
1812 src_val <<= shift_val;