Home
last modified time | relevance | path

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

/external/aac/libSBRenc/src/
Dinvf_est.cpp129 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/chromium_org/third_party/opus/src/celt/
Dbands.h112 int hysteresis_decision(opus_val16 val, const opus_val16 *thresholds, const opus_val16 *hysteresis,…
Dbands.c46 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/libopus/celt/
Dbands.h112 int hysteresis_decision(opus_val16 val, const opus_val16 *thresholds, const opus_val16 *hysteresis,…
Dbands.c46 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/
Ddriver_i.h464 int threshold, int hysteresis) in wpa_drv_signal_monitor() argument
468 threshold, hysteresis); in wpa_drv_signal_monitor()
/external/chromium_org/chrome/browser/ui/cocoa/
Ddraggable_button_mixin.mm12 // TODO(viettrungluu): Do we want common, standard code for drag hysteresis?
/external/libopus/src/
Dopus_encoder.c1258 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/chromium_org/third_party/opus/src/src/
Dopus_encoder.c1258 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/chromium_org/chrome/browser/ui/cocoa/bookmarks/
Dbookmark_button.mm143 (yDelta <= -yHysteresis) && // Bottom of hysteresis box was hit.
/external/wpa_supplicant_8/src/drivers/
Ddriver.h2409 int (*signal_monitor)(void *priv, int threshold, int hysteresis);
Ddriver_nl80211.c10976 static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis) in nl80211_signal_monitor() argument
10985 "hysteresis=%d", threshold, hysteresis); in nl80211_signal_monitor()
11000 NLA_PUT_U32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis); in nl80211_signal_monitor()
/external/chromium_org/third_party/tcmalloc/vendor/
DChangeLog419 * Avoid realloc resizing ping-pongs using hysteresis (csilvers)