Searched refs:hysteresis (Results 1 – 7 of 7) sorted by relevance
/external/aac/libSBRenc/src/ |
D | invf_est.cpp | 129 static const FIXP_DBL hysteresis = 0x00400000 ; /* Delta value for hysteresis. scaled with SCALE_FA… variable 380 quantStepsSbrTmp[*prevRegionSbr] = quantStepsSbr[*prevRegionSbr] + hysteresis; in decisionAlgorithm() 382 quantStepsSbrTmp[*prevRegionSbr - 1] = quantStepsSbr[*prevRegionSbr - 1] - hysteresis; in decisionAlgorithm() 385 quantStepsOrigTmp[*prevRegionOrig] = quantStepsOrig[*prevRegionOrig] + hysteresis; in decisionAlgorithm() 387 quantStepsOrigTmp[*prevRegionOrig - 1] = quantStepsOrig[*prevRegionOrig - 1] - hysteresis; in decisionAlgorithm()
|
/external/libopus/celt/ |
D | bands.h | 112 int hysteresis_decision(opus_val16 val, const opus_val16 *thresholds, const opus_val16 *hysteresis,…
|
D | bands.c | 46 int hysteresis_decision(opus_val16 val, const opus_val16 *thresholds, const opus_val16 *hysteresis,… in hysteresis_decision() argument 54 if (i>prev && val < thresholds[prev]+hysteresis[prev]) in hysteresis_decision() 56 if (i<prev && val > thresholds[prev-1]-hysteresis[prev-1]) in hysteresis_decision()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | driver_i.h | 472 int threshold, int hysteresis) in wpa_drv_signal_monitor() argument 476 threshold, hysteresis); in wpa_drv_signal_monitor()
|
/external/libopus/src/ |
D | opus_encoder.c | 1258 int threshold, hysteresis; in opus_encode_native() local 1260 hysteresis = bandwidth_thresholds[2*(bandwidth-OPUS_BANDWIDTH_MEDIUMBAND)+1]; in opus_encode_native() 1264 threshold -= hysteresis; in opus_encode_native() 1266 threshold += hysteresis; in opus_encode_native()
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver.h | 2659 int (*signal_monitor)(void *priv, int threshold, int hysteresis);
|
D | driver_nl80211.c | 6447 static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis) in nl80211_signal_monitor() argument 6455 "hysteresis=%d", threshold, hysteresis); in nl80211_signal_monitor() 6460 nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis)) { in nl80211_signal_monitor()
|