Home
last modified time | relevance | path

Searched refs:hysteresis (Results 1 – 18 of 18) sorted by relevance

/third_party/gstreamer/gstplugins_bad/gst/removesilence/
Dvad_private.c59 guint64 hysteresis; member
67 vad_new (guint64 hysteresis, gint threshold) in vad_new() argument
71 vad->hysteresis = hysteresis; in vad_new()
93 vad_set_hysteresis (struct _vad_s *p, guint64 hysteresis) in vad_set_hysteresis() argument
95 p->hysteresis = hysteresis; in vad_set_hysteresis()
101 return p->hysteresis; in vad_get_hysteresis()
154 if (p->vad_samples >= p->hysteresis) { in vad_update()
Dvad_private.h34 void vad_set_hysteresis(VADFilter *p, guint64 hysteresis);
42 VADFilter* vad_new(guint64 hysteresis, gint threshold);
/third_party/libinput/doc/user/
Dtouchpad-jitter.rst10 libinput has a mechanism called a **hysteresis** to avoid that jitter. When
11 active, movement with in the **hysteresis margin** is discarded. If the
14 read the implementation of the hysteresis in ``src/evdev.c``.
17 hysteresis. Users should override this with a udev hwdb entry where the
23 Overriding the hysteresis margins
101 hysteresis-like behavior to the axis. Unfortunately, this behavior leads to
/third_party/ffmpeg/libavfilter/
Dvf_hysteresis.c49 …void (*hysteresis)(struct HysteresisContext *s, const uint8_t *bsrc, const uint8_t *osrc, uint8_t … member
128 s->hysteresis(s, base->data[p], alt->data[p], in process_frame()
274 s->hysteresis = hysteresis8; in config_input()
276 s->hysteresis = hysteresis16; in config_input()
353 FRAMESYNC_DEFINE_CLASS(hysteresis, HysteresisContext, fs);
/third_party/libinput/src/
Devdev-mt-touchpad.c177 if (tp->hysteresis.enabled || t->history.count == 0) in tp_detect_wobbling()
181 t->hysteresis.x_motion_history = 0; in tp_detect_wobbling()
188 dtime = time - tp->hysteresis.last_motion_time; in tp_detect_wobbling()
190 tp->hysteresis.last_motion_time = time; in tp_detect_wobbling()
193 t->hysteresis.x_motion_history = 0; in tp_detect_wobbling()
197 t->hysteresis.x_motion_history >>= 1; in tp_detect_wobbling()
201 t->hysteresis.x_motion_history |= (1 << 2); in tp_detect_wobbling()
202 if (t->hysteresis.x_motion_history == r_l_r) { in tp_detect_wobbling()
203 tp->hysteresis.enabled = true; in tp_detect_wobbling()
216 if (!tp->hysteresis.enabled) in tp_motion_hysteresis()
[all …]
Devdev-mt-touchpad.h224 } hysteresis; member
342 } hysteresis; member
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
Ddriver_i.h489 int threshold, int hysteresis) in wpa_drv_signal_monitor() argument
493 threshold, hysteresis); in wpa_drv_signal_monitor()
Dctrl_iface.c7739 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/
Ddriver_i.h515 int threshold, int hysteresis) in wpa_drv_signal_monitor() argument
519 threshold, hysteresis); in wpa_drv_signal_monitor()
Dctrl_iface.c8158 int hysteresis = 0; in wpas_ctrl_iface_signal_monitor() local
8170 hysteresis = atoi(pos + 11); in wpas_ctrl_iface_signal_monitor()
8171 return wpa_drv_signal_monitor(wpa_s, threshold, hysteresis); in wpas_ctrl_iface_signal_monitor()
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dfocus_traversal.dart169 /// Since hysteresis in the navigation order is undesirable, this implementation
308 // avoid hysteresis when we change directions in navigation.
318 // has been unmounted. This has the side effect that hysteresis might not
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
Ddriver.h3328 int (*signal_monitor)(void *priv, int threshold, int hysteresis);
Ddriver_nl80211.c7784 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/
Ddriver.h3635 int (*signal_monitor)(void *priv, int threshold, int hysteresis);
Ddriver_nl80211.c8534 static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis) in nl80211_signal_monitor() argument
8542 "hysteresis=%d", threshold, hysteresis); in nl80211_signal_monitor()
8547 nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis)) { in nl80211_signal_monitor()
/third_party/ffmpeg/
DChangelog598 - hysteresis filter
/third_party/skia/third_party/externals/imgui/docs/
DCHANGELOG.txt3223 …in display. Handling various positioning/sizing/scrolling edge cases. Better hysteresis when moving
/third_party/ffmpeg/doc/
Dfilters.texi11086 Standard edge detection with custom values for the hysteresis thresholding:
13358 @section hysteresis
13377 The @code{hysteresis} filter also supports the @ref{framesync} options.