HomeSort by relevance Sort by last modified time
    Searched full:hysteresis (Results 1 - 25 of 46) sorted by null

1 2

  /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...]
  /external/chromium/chrome/browser/ui/cocoa/
draggable_button.h 52 // hysteresis limit.
63 // hysteresis limit.
draggable_button.mm 13 // TODO(viettrungluu): Do we want common, standard code for drag hysteresis?
  /external/chromium_org/third_party/opus/src/silk/
gain_quant.c 38 /* Gain scalar quantization with hysteresis, uniform on log scale */
53 /* Round towards previous quantized gain (hysteresis) */
main.h 169 /* Gain scalar quantization with hysteresis, uniform on log scale */
  /frameworks/base/tools/orientationplot/
README.txt 49 for hysteresis. Try holding the device in one orientation and slowly turning
64 In other words, the hysteresis gap applies only when the measured orientation
  /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;
  /external/chromium_org/chrome/browser/ui/cocoa/
draggable_button_mixin.mm 12 // TODO(viettrungluu): Do we want common, standard code for drag hysteresis?
  /external/chromium_org/third_party/opus/src/celt/
bands.h 112 int hysteresis_decision(opus_val16 val, const opus_val16 *thresholds, const opus_val16 *hysteresis, int N, int prev);
bands.c 46 int hysteresis_decision(opus_val16 val, const opus_val16 *thresholds, const opus_val16 *hysteresis, int N, int prev)
54 if (i>prev && val < thresholds[prev]+hysteresis[prev])
56 if (i<prev && val > thresholds[prev-1]-hysteresis[prev-1])
500 /* Hysteresis */
    [all...]
rate.c 351 /*Choose a threshold with some hysteresis to keep bands from
  /frameworks/base/policy/src/com/android/internal/policy/impl/
WindowOrientationListener.java 211 * to the corresponding orientation. These thresholds have some hysteresis built-in
345 // The gap angle in degrees between adjacent orientation angles for hysteresis.
579 * for hysteresis.
583 // The gap is used only to introduce hysteresis among advertised orientation
    [all...]
  /hardware/invensense/60xx/mlsdk/mllite/
mlcontrol.h 74 #define INV_HYSTERESIS 0x0008 // Indicates that, when INV_GRID is selected, hysteresis should be used to prevent
  /packages/apps/Camera2/src/com/android/camera/app/
OrientationManager.java 34 // Orientation hysteresis amount used in rounding, in degrees
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
OrientationManager.java 34 // Orientation hysteresis amount used in rounding, in degrees
  /frameworks/base/services/java/com/android/server/power/
DisplayPowerController.java 151 // an observed change in light level that exceeds the hysteresis threshold.
155 // Hysteresis constraints for brightening or darkening.
319 // 0 if not changing or within hysteresis threshold.
320 // 1 if brightening beyond hysteresis threshold.
321 // -1 if darkening beyond hysteresis threshold.
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
driver_i.h 451 int threshold, int hysteresis)
455 threshold, hysteresis);
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_button.mm 135 (yDelta <= -yHysteresis) && // Bottom of hysteresis box was hit.
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_button.mm 142 (yDelta <= -yHysteresis) && // Bottom of hysteresis box was hit.
  /external/chromium_org/content/browser/speech/endpointer/
energy_endpointer.cc 275 // To induce hysteresis in the state residency, we allow a
  /external/opencv/cv/src/
cvcanny.cpp 304 // now track the edges (hysteresis thresholding)
  /packages/inputmethods/LatinIME/java/res/values/
attrs.xml 84 <!-- Key detection hysteresis distance. -->
86 <!-- Key detection hysteresis distance for shift/symbols sliding input. -->
  /external/llvm/include/llvm/ADT/
SparseSet.h 154 // Hysteresis prevents needless reallocations.
SparseMultiSet.h 199 // Hysteresis prevents needless reallocations.
  /external/chromium_org/third_party/opus/src/src/
opus_encoder.c 111 middle (memoriless) threshold. The second column is the hysteresis
1284 int threshold, hysteresis; local
    [all...]

Completed in 1445 milliseconds

1 2