Lines Matching refs:old
809 static bool is_disabling(int old, int new, int threshold)
811 return old >= threshold && new < threshold;
814 static bool is_enabling(int old, int new, int threshold)
816 return old < threshold && new >= threshold;
3214 * Build a set of 'intermediate' watermark values that satisfy both the old
3258 * there's no safe way to transition from the old state to
3483 const struct ilk_wm_values *old,
3491 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
3498 if (old->enable_fbc_wm != new->enable_fbc_wm) {
3504 if (old->partitioning != new->partitioning) {
3516 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
3517 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
4142 * copy from old state to be sure
5852 const struct skl_ddb_entry *old, *new;
5854 old = &old_crtc_state->wm.skl.plane_ddb_y[plane_id];
5857 if (skl_ddb_entry_equal(old, new))
5863 old->start, old->end, new->start, new->end,
5864 skl_ddb_entry_size(old), skl_ddb_entry_size(new));