Lines Matching defs:test1
1513 * Let test0 = test status for combination 'b00 and test1 = test status for 'b01
1516 * if test0 fails and test1 passes, BIT[15:14] is 'b01
1517 * if test0 fails and test1 fails, BIT[15:14] is 'b10
1518 * if test0 passes and test1 fails, BIT[15:14] is 'b11
1519 * if test0 passes and test1 passes, BIT[15:14] is 'b00
1528 bool test1;
1573 /* test0 and test1 are both completed at this point */
1575 test1 = (cmd_status == 0);
1577 if (!test0 && test1)
1579 else if (!test0 && !test1)
1581 else if (test0 && !test1)
1583 else if (test0 && test1)