Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/media/usb/gspca/
Dsn9c20x.c2087 s16 new_exp; in do_autoexposure() local
2098 new_exp = cur_exp + sd->exposure_step; in do_autoexposure()
2099 if (new_exp > max) in do_autoexposure()
2100 new_exp = max; in do_autoexposure()
2101 if (new_exp < min) in do_autoexposure()
2102 new_exp = min; in do_autoexposure()
2103 v4l2_ctrl_s_ctrl(sd->exposure, new_exp); in do_autoexposure()
2116 new_exp = cur_exp - sd->exposure_step; in do_autoexposure()
2117 if (new_exp > max) in do_autoexposure()
2118 new_exp = max; in do_autoexposure()
[all …]
/linux-4.4.14/kernel/time/
Dposix-cpu-timers.c461 static inline int expires_gt(cputime_t expires, cputime_t new_exp) in expires_gt() argument
463 return expires == 0 || expires > new_exp; in expires_gt()