Lines Matching defs:rotated
3667 // rotated by a constant value. The bits that are rotated off the right end are
3692 // rotated by a variable number of bits. The bits that are rotated off the
8326 rotated = ROR(R[m], rotation);
8327 R[d] = SignExtend(rotated<7:0>, 32);
8380 // rotated = ROR(R[m], rotation);
8381 uint64_t rotated = ROR(Rm, rotation, &success);
8385 // R[d] = SignExtend(rotated<7:0>, 32);
8386 int64_t data = llvm::SignExtend64<8>(rotated);
8411 rotated = ROR(R[m], rotation);
8412 R[d] = SignExtend(rotated<15:0>, 32);
8465 // rotated = ROR(R[m], rotation);
8466 uint64_t rotated = ROR(Rm, rotation, &success);
8470 // R[d] = SignExtend(rotated<15:0>, 32);
8478 int64_t data = llvm::SignExtend64<16>(rotated);
8496 rotated = ROR(R[m], rotation);
8497 R[d] = ZeroExtend(rotated<7:0>, 32);
8550 // rotated = ROR(R[m], rotation);
8551 uint64_t rotated = ROR(Rm, rotation, &success);
8555 // R[d] = ZeroExtend(rotated<7:0>, 32);
8564 Bits32(rotated, 7, 0)))
8579 rotated = ROR(R[m], rotation);
8580 R[d] = ZeroExtend(rotated<15:0>, 32);
8632 // rotated = ROR(R[m], rotation);
8633 uint64_t rotated = ROR(Rm, rotation, &success);
8637 // R[d] = ZeroExtend(rotated<15:0>, 32);
8646 Bits32(rotated, 15, 0)))