Lines Matching defs:amount
1016 unsigned amount) const {
1019 if (amount > 0) {
1022 // The behavior is undefined in c++ if the shift amount greater than or
1027 if (amount >= reg_size) {
1030 uvalue <<= amount;
1033 if (amount >= reg_size) {
1036 uvalue >>= amount;
1039 if (amount >= reg_size) {
1042 uvalue >>= amount;
1045 uvalue |= ~UINT64_C(0) << (reg_size - amount);
1049 uvalue = RotateRight(uvalue, amount, reg_size);
9792 // SVE uses the whole (saturated) lane for the shift amount.