Searched refs:hysteresis (Results 1 – 10 of 10) 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 | 470 int threshold, int hysteresis) in wpa_drv_signal_monitor() argument 474 threshold, hysteresis); in wpa_drv_signal_monitor()
|
D | ctrl_iface.c | 6868 int hysteresis = 0; in wpas_ctrl_iface_signal_monitor() local 6880 hysteresis = atoi(pos + 11); in wpas_ctrl_iface_signal_monitor() 6881 return wpa_drv_signal_monitor(wpa_s, threshold, hysteresis); in wpas_ctrl_iface_signal_monitor()
|
/external/opencv3/doc/py_tutorials/py_imgproc/py_canny/ |
D | py_canny.markdown | 60 ![image](images/hysteresis.jpg)
|
/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/opencv3/modules/imgproc/src/opencl/ |
D | canny.cl | 371 hysteresis (add edges labeled 0 if they are connected with an edge labeled 2)
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver.h | 2771 int (*signal_monitor)(void *priv, int threshold, int hysteresis);
|
D | driver_nl80211.c | 6786 static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis) in nl80211_signal_monitor() argument 6794 "hysteresis=%d", threshold, hysteresis); in nl80211_signal_monitor() 6799 nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis)) { in nl80211_signal_monitor()
|