HomeSort by relevance Sort by last modified time
    Searched defs:hysteresis (Results 1 - 2 of 2) sorted by null

  /external/aac/libSBRenc/src/
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;
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 181 final float hysteresis = 20F; local
191 if (Math.abs(delta) <= hysteresis) {
213 boolean verticalCheck = (y >= r.top - hysteresis)
214 && (y < r.bottom + hysteresis);
215 boolean horizCheck = (x >= r.left - hysteresis)
216 && (x < r.right + hysteresis);
219 if ((Math.abs(r.left - x) < hysteresis) && verticalCheck) {
222 if ((Math.abs(r.right - x) < hysteresis) && verticalCheck) {
225 if ((Math.abs(r.top - y) < hysteresis) && horizCheck) {
228 if ((Math.abs(r.bottom - y) < hysteresis) && horizCheck)
    [all...]

Completed in 70 milliseconds