Lines Matching defs:uthr
106 unsigned int mode7_us_to_lthr; /* Time to reach lthr from uthr */
108 unsigned int uthr;
1035 dac33_write16(component, DAC33_UTHR_MSB, DAC33_THRREG(dac33->uthr));
1087 dac33->uthr = UTHR_FROM_PERIOD_SIZE(period_size, rate,
1089 if (dac33->uthr > (dac33->fifo_size - DAC33_MODE7_MARGIN))
1090 dac33->uthr = dac33->fifo_size - DAC33_MODE7_MARGIN;
1091 if (dac33->uthr < (DAC33_MODE7_MARGIN + 10))
1092 dac33->uthr = (DAC33_MODE7_MARGIN + 10);
1096 dac33->uthr - DAC33_MODE7_MARGIN + 1);
1143 unsigned int time_delta, uthr;
1222 uthr = dac33->uthr;
1235 delay = uthr;
1249 if (likely(uthr > samples_out))
1250 delay = uthr - samples_out;
1268 if (unlikely(delay > uthr))
1269 delay = uthr;