Lines Matching +full:11 +full:n

33 		"0:	diag 0,0,0x501\n"  in guest_code()
34 " ahi 11,1\n" in guest_code()
35 " j 0b\n" in guest_code()
42 " values did not match: 0x%llx, 0x%llx\n", \
48 " values did not match: 0x%x, 0x%x\n", \
85 "Invalid kvm_valid_regs did not cause expected KVM_RUN error: %d\n", in test_read_invalid()
92 "Invalid kvm_valid_regs did not cause expected KVM_RUN error: %d\n", in test_read_invalid()
106 "Invalid kvm_dirty_regs did not cause expected KVM_RUN error: %d\n", in test_set_invalid()
113 "Invalid kvm_dirty_regs did not cause expected KVM_RUN error: %d\n", in test_set_invalid()
128 TEST_ASSERT(rv == 0, "vcpu_run failed: %d\n", rv); in test_req_and_verify_all_valid_regs()
133 "Unexpected interception code: ic=%u, ipa=0x%x, ipb=0x%x\n", in test_req_and_verify_all_valid_regs()
152 run->s.regs.gprs[11] = 0xBAD1DEA; in test_set_and_verify_various_reg_values()
153 run->s.regs.acrs[0] = 1 << 11; in test_set_and_verify_various_reg_values()
164 TEST_ASSERT(rv == 0, "vcpu_run failed: %d\n", rv); in test_set_and_verify_various_reg_values()
166 TEST_ASSERT(run->s.regs.gprs[11] == 0xBAD1DEA + 1, in test_set_and_verify_various_reg_values()
168 run->s.regs.gprs[11]); in test_set_and_verify_various_reg_values()
169 TEST_ASSERT(run->s.regs.acrs[0] == 1 << 11, in test_set_and_verify_various_reg_values()
193 run->s.regs.gprs[11] = 0xDEADBEEF; in test_clear_kvm_dirty_regs_bits()
196 TEST_ASSERT(rv == 0, "vcpu_run failed: %d\n", rv); in test_clear_kvm_dirty_regs_bits()
198 TEST_ASSERT(run->s.regs.gprs[11] != 0xDEADBEEF, in test_clear_kvm_dirty_regs_bits()
200 run->s.regs.gprs[11]); in test_clear_kvm_dirty_regs_bits()
234 ksft_test_result_pass("%s\n", testlist[idx].name); in main()