Lines Matching refs:j
49 int i, j; in test_and() local
52 for (j = 0; j < ARRAY_SIZE(tests); ++j) { in test_and()
54 Int128 b = expand(tests[j]); in test_and()
55 Int128 r = expand(tests[i] & tests[j]); in test_and()
65 int i, j; in test_add() local
68 for (j = 0; j < ARRAY_SIZE(tests); ++j) { in test_add()
70 Int128 b = expand(tests[j]); in test_add()
71 Int128 r = expand(tests[i] + tests[j]); in test_add()
81 int i, j; in test_sub() local
84 for (j = 0; j < ARRAY_SIZE(tests); ++j) { in test_sub()
86 Int128 b = expand(tests[j]); in test_sub()
87 Int128 r = expand(tests[i] - tests[j]); in test_sub()
110 int i, j; in test_nz() local
113 for (j = 0; j < ARRAY_SIZE(tests); ++j) { in test_nz()
122 int i, j; in test_le() local
125 for (j = 0; j < ARRAY_SIZE(tests); ++j) { in test_le()
128 int32_t b = (int32_t) tests[j]; in test_le()
136 int i, j; in test_lt() local
139 for (j = 0; j < ARRAY_SIZE(tests); ++j) { in test_lt()
142 int32_t b = (int32_t) tests[j]; in test_lt()
150 int i, j; in test_ge() local
153 for (j = 0; j < ARRAY_SIZE(tests); ++j) { in test_ge()
156 int32_t b = (int32_t) tests[j]; in test_ge()
164 int i, j; in test_gt() local
167 for (j = 0; j < ARRAY_SIZE(tests); ++j) { in test_gt()
170 int32_t b = (int32_t) tests[j]; in test_gt()