Lines Matching defs:tmp_qd
279 unsigned long tmp_qd;
291 * tmp_qd goes from 1 to 31 and div is either 2 or 3.
293 * be found with (tmp_qd, div) = (2, 6) or (3, 4)), we remove any loop
294 * for a rate divisor when div is 2 and tmp_qd is a multiple of 3.
295 * We cannot inverse it (condition div is 3 and tmp_qd is even) or we
297 * (e.g. rate divisor 90 is made with div = 3 and tmp_qd = 30, thus
298 * tmp_qd is even so we skip it because we think div 2 could make this
299 * rate divisor which isn't possible since tmp_qd has to be <= 31).
301 for (tmp_qd = 1; tmp_qd < AT91_PMC_AUDIO_PLL_QDPAD_EXTDIV_MAX; tmp_qd++)
303 if (div == 2 && tmp_qd % 3 == 0)
307 rate * tmp_qd * div);
308 tmp_rate = best_parent_rate / (div * tmp_qd);
330 u32 tmp_qd = 0, div;
352 tmp_qd = div;
359 __func__, best_rate, *parent_rate, tmp_qd - 1);