Home
last modified time | relevance | path

Searched refs:new_error (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/drivers/video/fbdev/
H A Dasiliantfb.c141 unsigned new_error = Ftarget * n >= Fref * m ? in asiliant_calc_dclk2() local
143 if (new_error < best_error) { in asiliant_calc_dclk2()
146 best_error = new_error; in asiliant_calc_dclk2()
153 unsigned new_error = Ftarget * n >= Fref * (m & ~3) ? in asiliant_calc_dclk2() local
155 if (new_error < best_error) { in asiliant_calc_dclk2()
158 best_error = new_error; in asiliant_calc_dclk2()
/openbmc/linux/drivers/clk/imx/
H A Dclk-composite-8m.c63 int new_error = ((parent_rate / div1) / div2) - rate; in imx8m_clk_composite_compute_dividers() local
65 if (abs(new_error) < abs(error)) { in imx8m_clk_composite_compute_dividers()
68 error = new_error; in imx8m_clk_composite_compute_dividers()
/openbmc/boost-dbus/include/dbus/
H A Dproperties.hpp115 auto err = dbus::message::new_error(m, DBUS_ERROR_INVALID_ARGS, ""); in call()
123 auto err = dbus::message::new_error( in call()
130 auto err = dbus::message::new_error( in call()
H A Dmessage.hpp57 static message new_error(message& call, const string& error_name, in new_error() function in dbus::message