Lines Matching defs:left
115 s64 left = local64_read(&hwc->period_left);
122 if (unlikely(left <= -period)) {
123 left = period;
124 local64_set(&hwc->period_left, left);
129 if (unlikely(left < (s64)min)) {
130 left += period;
131 local64_set(&hwc->period_left, left);
142 if (left > max) {
143 left -= max;
144 if (left > max)
145 left = max;
146 else if (left < min)
147 left = min;
150 *hw_period = (u64)left;