Lines Matching refs:j
227 static inline bool test_div64_verify(u64 quotient, u32 remainder, int i, int j) in test_div64_verify() argument
229 return (quotient == test_div64_results[i][j].quotient && in test_div64_verify()
230 remainder == test_div64_results[i][j].remainder); in test_div64_verify()
238 #define test_div64_one(dividend, divisor, i, j) ({ \ argument
245 if (!test_div64_verify(quotient, remainder, i, j)) { \
249 test_div64_results[i][j].quotient, \
250 test_div64_results[i][j].remainder); \
264 int i, j; in test_div64() local
292 for (j = 0; j < SIZE_DIV64_DIVISORS; j++) { in test_div64()
293 if (!test_div64_one(dividend, test_div64_divisors[j], in test_div64()
294 i, j)) in test_div64()