Lines Matching defs:rot
1271 int rot) {
1274 // size<23:22> | rot<16> | Pg<12:10> | Zm<9:5> | Zdn<4:0>
1281 VIXL_ASSERT((rot == 90) || (rot == 270));
1283 Instr rotate_bit = (rot == 90) ? 0 : (1 << 16);
1293 int rot) {
1296 // size<23:22> | Zm<20:16> | rot<14:13> | Pg<12:10> | Zn<9:5> | Zda<4:0>
1301 VIXL_ASSERT((rot == 0) || (rot == 90) || (rot == 180) || (rot == 270));
1303 Instr rotate_bit = (rot / 90) << 13;
1314 int rot) {
1317 VIXL_ASSERT((rot == 0) || (rot == 90) || (rot == 180) || (rot == 270));
1319 Instr rotate_bit = (rot / 90) << 10;
6810 int rot) {
6813 // size<23:22> | op<16> | rot<10> | Zm<9:5> | Zdn<4:0>
6819 VIXL_ASSERT((rot == 90) || (rot == 270));
6821 Instr rotate_bit = (rot == 90) ? 0 : (1 << 10);
6829 int rot) {
6832 // size<23:22> | opc<20:16> | rot<11:10> | Zn<9:5> | Zda<4:0>
6835 VIXL_ASSERT((rot == 0) || (rot == 90) || (rot == 180) || (rot == 270));
6853 Instr rotate_bits = (rot / 90) << 10;
6860 int rot) {
6863 // size<23:22> | Zm<20:16> | rot<11:10> | Zn<9:5> | Zda<4:0>
6866 VIXL_ASSERT((rot == 0) || (rot == 90) || (rot == 180) || (rot == 270));
6871 Instr rotate_bits = (rot / 90) << 10;
6879 int rot) {
6882 // size<23:22> | opc<20:16> | rot<11:10> | Zn<9:5> | Zda<4:0>
6886 VIXL_ASSERT((rot == 0) || (rot == 90) || (rot == 180) || (rot == 270));
6888 Instr rotate_bit = (rot / 90) << 10;
6896 int rot) {
6899 // size<23:22> | Zm<20:16> | op<12> | rot<11:10> | Zn<9:5> | Zda<4:0>
6903 VIXL_ASSERT((rot == 0) || (rot == 90) || (rot == 180) || (rot == 270));
6905 Instr rotate_bit = (rot / 90) << 10;
7984 int rot) {
7987 // size<23:22> | op<16> | rot<10> | Zm<9:5> | Zdn<4:0>
7993 VIXL_ASSERT((rot == 90) || (rot == 270));
7995 Instr rotate_bit = (rot == 90) ? 0 : (1 << 10);
8302 int rot) {
8305 // size<23:22> | opc<20:16> | rot<11:10> | Zn<9:5> | Zda<4:0>
8309 VIXL_ASSERT((rot == 0) || (rot == 90) || (rot == 180) || (rot == 270));
8311 Instr rotate_bit = (rot / 90) << 10;
8319 int rot) {
8322 // size<23:22> | Zm<20:16> | op<12> | rot<11:10> | Zn<9:5> | Zda<4:0>
8326 VIXL_ASSERT((rot == 0) || (rot == 90) || (rot == 180) || (rot == 270));
8328 Instr rotate_bit = (rot / 90) << 10;