Lines Matching refs:idx
150 rdbx_check_add(rdbx_t *rdbx, uint32_t idx) { in rdbx_check_add() argument
154 delta = index_guess(&rdbx->index, &est, idx); in rdbx_check_add()
157 printf("replay_check failed at index %u\n", idx); in rdbx_check_add()
167 printf("rdbx_add_index failed at index %u\n", idx); in rdbx_check_add()
182 rdbx_check_expect_failure(rdbx_t *rdbx, uint32_t idx) { in rdbx_check_expect_failure() argument
187 delta = index_guess(&rdbx->index, &est, idx); in rdbx_check_expect_failure()
192 printf("replay_check failed at index %u (false positive)\n", idx); in rdbx_check_expect_failure()
200 rdbx_check_unordered(rdbx_t *rdbx, uint32_t idx) { in rdbx_check_unordered() argument
203 rstat = rdbx_check(rdbx, idx); in rdbx_check_unordered()
205 printf("replay_check_unordered failed at index %u\n", idx); in rdbx_check_unordered()
214 uint32_t idx, ircvd; in test_replay_dbx() local
229 for (idx=0; idx < (uint32_t)num_trials; idx++) { in test_replay_dbx()
230 status = rdbx_check_add(&rdbx, idx); in test_replay_dbx()
248 for (idx=0; idx < (uint32_t)num_fp_trials; idx++) { in test_replay_dbx()
249 status = rdbx_check_expect_failure(&rdbx, idx); in test_replay_dbx()
272 for (idx=0; idx < (uint32_t)num_trials; idx++) { in test_replay_dbx()