Lines Matching refs:tempo_history_count
129 static int tempo_history_count = 0;
238 tempo_history_count = 0;
239 tempo_history[tempo_history_count] = Mf_currtempo;
240 tempo_history_time[tempo_history_count] = 0;
291 for (i = 0; i <= tempo_history_count; i++) {
296 if (i > tempo_history_count || tempo_history_time[i] > Mf_currtime) {
552 if (tempo_history[tempo_history_count] == Mf_currtempo) break;
553 if (tempo_history_time[tempo_history_count] > Mf_currtime) break;
554 if (tempo_history_count < MAX_HISTORY - 1) tempo_history_count++;
555 tempo_history[tempo_history_count] = Mf_currtempo;
556 tempo_history_time[tempo_history_count] = Mf_currtime;