Lines Matching refs:j
256 int j; in test_binops() local
259 for (j = 0; j < (int)OSSL_NELEM(test_values); ++j) { in test_binops()
260 unsigned int b = test_values[j]; in test_binops()
283 int j; in test_binops_8() local
286 for (j = 0; j < (int)OSSL_NELEM(test_values_8); ++j) { in test_binops_8()
287 unsigned int b = test_values_8[j]; in test_binops_8()
309 int j; in test_binops_s() local
312 for (j = 0; j < (int)OSSL_NELEM(test_values_s); ++j) { in test_binops_s()
313 size_t b = test_values_s[j]; in test_binops_s()
337 unsigned int j; in test_signed() local
340 for (j = 0; j < OSSL_NELEM(signed_test_values); ++j) { in test_signed()
341 int d = signed_test_values[j]; in test_signed()
354 unsigned int j; in test_8values() local
357 for (j = 0; j < sizeof(test_values_8); ++j) { in test_8values()
358 unsigned char f = test_values_8[j]; in test_8values()
369 size_t j; in test_32values() local
372 for (j = 0; j < OSSL_NELEM(test_values_32); j++) { in test_32values()
373 uint32_t f = test_values_32[j]; in test_32values()
384 int j, ret = 1; in test_64values() local
386 for (j = i + 1; j < (int)OSSL_NELEM(test_values_64); j++) { in test_64values()
387 uint64_t h = test_values_64[j]; in test_64values()
392 TEST_info("test_64values failed i=%d j=%d", i, j); in test_64values()