/third_party/ffmpeg/libavfilter/ |
H A D | vf_hysteresis.c | 49 void (*hysteresis)(struct HysteresisContext *s, const uint8_t *bsrc, const uint8_t *osrc, uint8_t *dst, member 123 s->hysteresis(s, base->data[p], alt->data[p], in process_frame() 269 s->hysteresis = hysteresis8; in config_input() 271 s->hysteresis = hysteresis16; in config_input() 344 FRAMESYNC_DEFINE_CLASS(hysteresis, HysteresisContext, fs); 367 .name = "hysteresis",
|
/third_party/libinput/src/ |
H A D | evdev-mt-touchpad.c | 196 if (tp->hysteresis.enabled || t->history.count == 0) in tp_detect_wobbling() 200 t->hysteresis.x_motion_history = 0; in tp_detect_wobbling() 207 dtime = time - tp->hysteresis.last_motion_time; in tp_detect_wobbling() 209 tp->hysteresis.last_motion_time = time; in tp_detect_wobbling() 212 t->hysteresis.x_motion_history = 0; in tp_detect_wobbling() 216 t->hysteresis.x_motion_history >>= 1; in tp_detect_wobbling() 220 t->hysteresis.x_motion_history |= bit(2); in tp_detect_wobbling() 221 if (t->hysteresis.x_motion_history == r_l_r) { in tp_detect_wobbling() 222 tp->hysteresis.enabled = true; in tp_detect_wobbling() 224 "hysteresis enable in tp_detect_wobbling() [all...] |
H A D | evdev-mt-touchpad.h | 224 } hysteresis; member 342 } hysteresis; member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | driver_i.h | 489 int threshold, int hysteresis) in wpa_drv_signal_monitor() 493 threshold, hysteresis); in wpa_drv_signal_monitor() 488 wpa_drv_signal_monitor(struct wpa_supplicant *wpa_s, int threshold, int hysteresis) wpa_drv_signal_monitor() argument
|
H A D | ctrl_iface.c | 7739 int hysteresis = 0; in wpas_ctrl_iface_signal_monitor() local 7751 hysteresis = atoi(pos + 11); in wpas_ctrl_iface_signal_monitor() 7752 return wpa_drv_signal_monitor(wpa_s, threshold, hysteresis); in wpas_ctrl_iface_signal_monitor()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | driver_i.h | 555 int threshold, int hysteresis) in wpa_drv_signal_monitor() 559 threshold, hysteresis); in wpa_drv_signal_monitor() 554 wpa_drv_signal_monitor(struct wpa_supplicant *wpa_s, int threshold, int hysteresis) wpa_drv_signal_monitor() argument
|
H A D | ctrl_iface.c | 8580 int hysteresis = 0; local 8592 hysteresis = atoi(pos + 11); 8593 return wpa_drv_signal_monitor(wpa_s, threshold, hysteresis);
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
H A D | driver.h | 3318 * @hysteresis: Minimum change in signal strength before indicating a 3326 * least %hysteresis from the previously indicated signal change event. 3328 int (*signal_monitor)(void *priv, int threshold, int hysteresis);
|
H A D | driver_nl80211.c | 7784 static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis) in nl80211_signal_monitor() argument 7792 "hysteresis=%d", threshold, hysteresis); in nl80211_signal_monitor() 7797 nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis)) { in nl80211_signal_monitor()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
H A D | driver.h | 3736 * @hysteresis: Minimum change in signal strength before indicating a 3744 * least %hysteresis from the previously indicated signal change event. 3746 int (*signal_monitor)(void *priv, int threshold, int hysteresis);
|
H A D | driver_nl80211.c | 8906 static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis) argument 8914 "hysteresis=%d", threshold, hysteresis); 8919 nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis)) {
|