Searched refs:hysteresis (Results 1 - 12 of 12) sorted by relevance
/external/libopus/celt/ |
H A D | bands.h | 112 int hysteresis_decision(opus_val16 val, const opus_val16 *thresholds, const opus_val16 *hysteresis, int N, int prev);
|
H A D | bands.c | 46 int hysteresis_decision(opus_val16 val, const opus_val16 *thresholds, const opus_val16 *hysteresis, int N, int prev) argument 54 if (i>prev && val < thresholds[prev]+hysteresis[prev]) 56 if (i<prev && val > thresholds[prev-1]-hysteresis[prev-1])
|
/external/aac/libSBRenc/src/ |
H A D | invf_est.cpp | 129 static const FIXP_DBL hysteresis = 0x00400000 ; /* Delta value for hysteresis. scaled with SCALE_FAC_QUO */ variable 380 quantStepsSbrTmp[*prevRegionSbr] = quantStepsSbr[*prevRegionSbr] + hysteresis; 382 quantStepsSbrTmp[*prevRegionSbr - 1] = quantStepsSbr[*prevRegionSbr - 1] - hysteresis; 385 quantStepsOrigTmp[*prevRegionOrig] = quantStepsOrig[*prevRegionOrig] + hysteresis; 387 quantStepsOrigTmp[*prevRegionOrig - 1] = quantStepsOrig[*prevRegionOrig - 1] - hysteresis;
|
/external/wpa_supplicant_8/wpa_supplicant/ |
H A D | driver_i.h | 470 int threshold, int hysteresis) 474 threshold, hysteresis); 469 wpa_drv_signal_monitor(struct wpa_supplicant *wpa_s, int threshold, int hysteresis) argument
|
H A D | ctrl_iface.c | 6868 int hysteresis = 0; local 6880 hysteresis = atoi(pos + 11); 6881 return wpa_drv_signal_monitor(wpa_s, threshold, hysteresis);
|
/external/libopus/src/ |
H A D | opus_encoder.c | 111 middle (memoriless) threshold. The second column is the hysteresis 1258 int threshold, hysteresis; local 1260 hysteresis = bandwidth_thresholds[2*(bandwidth-OPUS_BANDWIDTH_MEDIUMBAND)+1]; 1264 threshold -= hysteresis; 1266 threshold += hysteresis;
|
/external/wpa_supplicant_8/hostapd/src/drivers/ |
H A D | driver.h | 2761 * @hysteresis: Minimum change in signal strength before indicating a 2769 * least %hysteresis from the previously indicated signal change event. 2771 int (*signal_monitor)(void *priv, int threshold, int hysteresis);
|
H A D | driver_nl80211.c | 6786 static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis) argument 6794 "hysteresis=%d", threshold, hysteresis); 6799 nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis)) {
|
/external/wpa_supplicant_8/src/drivers/ |
H A D | driver.h | 2761 * @hysteresis: Minimum change in signal strength before indicating a 2769 * least %hysteresis from the previously indicated signal change event. 2771 int (*signal_monitor)(void *priv, int threshold, int hysteresis);
|
H A D | driver_nl80211.c | 6786 static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis) argument 6794 "hysteresis=%d", threshold, hysteresis); 6799 nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis)) {
|
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/ |
H A D | driver.h | 2761 * @hysteresis: Minimum change in signal strength before indicating a 2769 * least %hysteresis from the previously indicated signal change event. 2771 int (*signal_monitor)(void *priv, int threshold, int hysteresis);
|
H A D | driver_nl80211.c | 6786 static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis) argument 6794 "hysteresis=%d", threshold, hysteresis); 6799 nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis)) {
|
Completed in 328 milliseconds