Lines Matching defs:LeftShift
324 std::optional<bool> LeftShift;
328 LeftShift = true;
332 LeftShift = false;
334 if (LeftShift.has_value()) {
335 if (*LeftShift)
345 if (*LeftShift && Leading == 0 && C2.ult(Trailing) && Trailing == ShAmt) {
357 if (!*LeftShift && Leading == C2 && Trailing == ShAmt) {
369 LeftShift.reset();
375 LeftShift = true;
380 LeftShift = false;
382 if (LeftShift.has_value() && Mask.isShiftedMask()) {
388 bool Cond = *LeftShift && Leading == 32 && Trailing > 0 &&
393 Cond = !*LeftShift && Leading == 32 && C2.ult(Trailing) &&