Home | History | Annotate | Download | only in test

Lines Matching refs:Bic

801 TEST(bic) {
808 __ Bic(x2, x0, Operand(x1));
809 __ Bic(w3, w0, Operand(w1, LSL, 4));
810 __ Bic(x4, x0, Operand(x1, LSL, 4));
811 __ Bic(x5, x0, Operand(x1, LSR, 1));
812 __ Bic(w6, w0, Operand(w1, ASR, 20));
813 __ Bic(x7, x0, Operand(x1, ASR, 20));
814 __ Bic(w8, w0, Operand(w1, ROR, 28));
815 __ Bic(x9, x0, Operand(x1, ROR, 24));
816 __ Bic(x10, x0, Operand(0x1f));
817 __ Bic(x11, x0, Operand(0x100));
819 // Test bic into sp when the constant cannot be encoded in the immediate
825 __ Bic(sp, x0, Operand(0xabcdef));
855 __ Bic(w6, w0, Operand(w1, UXTB));
856 __ Bic(x7, x0, Operand(x1, UXTH, 1));
857 __ Bic(w8, w0, Operand(w1, UXTW, 2));
858 __ Bic(x9, x0, Operand(x1, UXTX, 3));
859 __ Bic(w10, w0, Operand(w1, SXTB));
860 __ Bic(x11, x0, Operand(x1, SXTH, 1));
861 __ Bic(x12, x0, Operand(x1, SXTW, 2));
862 __ Bic(x13, x0, Operand(x1, SXTX, 3));
12358 __ bic(xzr, x0, x3);
12359 __ bic(xzr, x3, xzr);
12360 __ bic(xzr, xzr, x3);
17511 __ Bic(v16.V16B(), v0.V16B(), v0.V16B()); // self test
17512 __ Bic(v17.V16B(), v0.V16B(), v1.V16B()); // all combinations
17513 __ Bic(v24.V8B(), v0.V8B(), v0.V8B()); // self test
17514 __ Bic(v25.V8B(), v0.V8B(), v1.V8B()); // all combinations
18603 __ Bic(v16.V4H(), 0x00, 0);
18604 __ Bic(v17.V4H(), 0xff, 8);
18605 __ Bic(v18.V8H(), 0x00, 0);
18606 __ Bic(v19.V8H(), 0xff, 8);
18608 __ Bic(v20.V2S(), 0x00, 0);
18609 __ Bic(v21.V2S(), 0xff, 8);
18610 __ Bic(v22.V2S(), 0x00, 16);
18611 __ Bic(v23.V2S(), 0xff, 24);
18613 __ Bic(v24.V4S(), 0xff, 0);
18614 __ Bic(v25.V4S(), 0x00, 8);
18615 __ Bic(v26.V4S(), 0xff, 16);
18616 __ Bic(v27.V4S(), 0x00, 24);