Lines Matching refs:temp_opp
462 static bool _compare_exact(struct dev_pm_opp **opp, struct dev_pm_opp *temp_opp, in _compare_exact() argument
466 *opp = temp_opp; in _compare_exact()
473 static bool _compare_ceil(struct dev_pm_opp **opp, struct dev_pm_opp *temp_opp, in _compare_ceil() argument
477 *opp = temp_opp; in _compare_ceil()
484 static bool _compare_floor(struct dev_pm_opp **opp, struct dev_pm_opp *temp_opp, in _compare_floor() argument
490 *opp = temp_opp; in _compare_floor()
498 bool (*compare)(struct dev_pm_opp **opp, struct dev_pm_opp *temp_opp, in _opp_table_find_key() argument
502 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE); in _opp_table_find_key() local
510 list_for_each_entry(temp_opp, &opp_table->opp_list, node) { in _opp_table_find_key()
511 if (temp_opp->available == available) { in _opp_table_find_key()
512 if (compare(&opp, temp_opp, read(temp_opp, index), *key)) in _opp_table_find_key()
531 bool (*compare)(struct dev_pm_opp **opp, struct dev_pm_opp *temp_opp, in _find_key() argument