Lines Matching refs:offset_hist
363 static size_t compute_offset(sequence_command_t seq, u64 *const offset_hist);
1270 u64 *const offset_hist = ctx->previous_offsets; in execute_sequences() local
1280 size_t const offset = compute_offset(seq, offset_hist); in execute_sequences()
1316 static size_t compute_offset(sequence_command_t seq, u64 *const offset_hist) { in compute_offset() argument
1337 offset = offset_hist[0]; in compute_offset()
1341 offset = idx < 3 ? offset_hist[idx] : offset_hist[0] - 1; in compute_offset()
1346 offset_hist[2] = offset_hist[1]; in compute_offset()
1348 offset_hist[1] = offset_hist[0]; in compute_offset()
1349 offset_hist[0] = offset; in compute_offset()
1357 offset_hist[2] = offset_hist[1]; in compute_offset()
1358 offset_hist[1] = offset_hist[0]; in compute_offset()
1359 offset_hist[0] = offset; in compute_offset()