Searched defs:hysteresis (Results 1 - 9 of 9) sorted by relevance

/external/aac/libSBRenc/src/
H A Dinvf_est.cpp129 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/chromium_org/third_party/opus/src/celt/
H A Dbands.c46 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/chromium_org/third_party/opus/src/src/
H A Dopus_encoder.c111 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/libopus/celt/
H A Dbands.c46 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/libopus/src/
H A Dopus_encoder.c111 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/wpa_supplicant/
H A Ddriver_i.h464 int threshold, int hysteresis)
468 threshold, hysteresis);
463 wpa_drv_signal_monitor(struct wpa_supplicant *wpa_s, int threshold, int hysteresis) argument
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_nl80211.c10976 static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis) argument
10985 "hysteresis=%d", threshold, hysteresis);
11000 NLA_PUT_U32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis);
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_nl80211.c10976 static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis) argument
10985 "hysteresis=%d", threshold, hysteresis);
11000 NLA_PUT_U32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis);
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_nl80211.c10976 static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis) argument
10985 "hysteresis=%d", threshold, hysteresis);
11000 NLA_PUT_U32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis);

Completed in 210 milliseconds