Lines Matching refs:i
68 uint32_t x, i, j; in test_rand_uniform() local
75 for (i = 1; i < 100; i += 13) { in test_rand_uniform()
76 x = ossl_rand_uniform_uint32(ctx, i, &err); in test_rand_uniform()
79 || !TEST_uint_lt(x, i)) in test_rand_uniform()
82 for (i = 1; i < 100; i += 17) in test_rand_uniform()
83 for (j = i + 1; j < 150; j += 11) { in test_rand_uniform()
84 x = ossl_rand_range_uint32(ctx, i, j, &err); in test_rand_uniform()
86 || !TEST_uint_ge(x, i) in test_rand_uniform()
143 size_t i; in fips_health_tests() local
146 for (i = 0; i < sizeof(buf); i++) in fips_health_tests()
147 buf[i] = 0xff & i; in fips_health_tests()
148 if (!TEST_true(fips_health_test_one(buf, i, i))) in fips_health_tests()
152 for (i = 0; i < 20; i++) in fips_health_tests()
153 buf[i] = 0xff & (i > 10 ? 200 : i); in fips_health_tests()
154 if (!TEST_false(fips_health_test_one(buf, i, i))) in fips_health_tests()
158 for (i = 0; i < sizeof(buf); i++) in fips_health_tests()
159 buf[i] = 0xff & (i >= 512 && i % 8 == 0 ? 0x80 : i); in fips_health_tests()
160 if (!TEST_false(fips_health_test_one(buf, i, i))) in fips_health_tests()