Home
last modified time | relevance | path

Searched refs:new_exp (Results 1 – 2 of 2) sorted by relevance

/Linux-v4.19/drivers/media/usb/gspca/
Dsn9c20x.c2075 s16 new_exp; in do_autoexposure() local
2086 new_exp = cur_exp + sd->exposure_step; in do_autoexposure()
2087 if (new_exp > max) in do_autoexposure()
2088 new_exp = max; in do_autoexposure()
2089 if (new_exp < min) in do_autoexposure()
2090 new_exp = min; in do_autoexposure()
2091 v4l2_ctrl_s_ctrl(sd->exposure, new_exp); in do_autoexposure()
2104 new_exp = cur_exp - sd->exposure_step; in do_autoexposure()
2105 if (new_exp > max) in do_autoexposure()
2106 new_exp = max; in do_autoexposure()
[all …]
/Linux-v4.19/kernel/time/
Dposix-cpu-timers.c441 static inline int expires_gt(u64 expires, u64 new_exp) in expires_gt() argument
443 return expires == 0 || expires > new_exp; in expires_gt()