Lines Matching defs:new
67 /* used in computing the new watermarks state */
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;
3141 /* Compute new watermarks for the pipe */
3215 * state and the new state. These can be programmed to the hardware
3259 * the new state, so we need to fail the atomic transaction.
3484 const struct ilk_wm_values *new)
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])
3813 * If new mask is zero - means there is nothing to mask,
5852 const struct skl_ddb_entry *old, *new;
5855 new = &new_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));