Searched refs:ifEqz (Results 1 – 1 of 1) sorted by relevance
/art/test/083-compiler-regressions/src/ |
D | Main.java | 9751 private static int ifEqz(int src, int thn, int els) { return (src == 0) ? thn : els; } in ifEqz() method in MirOpSelectTests 9808 ifEqz(-1, 101, 201), 201, in testIfCcz() 9809 ifEqz(0, 102, 202), 102, in testIfCcz() 9810 ifEqz(1, 103, 203), 203, in testIfCcz()
|