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

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
BounceInterpolator.java 26 private final static float SCALE_FACTOR = 7.5625f;
32 return SCALE_FACTOR * t * t;
35 return SCALE_FACTOR * t2 * t2 + 3f / 4f;
38 return SCALE_FACTOR * t2 * t2 + 15f / 16f;
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
RoundView.java 38 private final float SCALE_FACTOR = 0.3f;
73 .SCALE_Y, SCALE_FACTOR);
75 .SCALE_X, SCALE_FACTOR);
  /device/google/contexthub/firmware/os/algos/calibration/online_calibration/common_data/
calibration_data.h 44 * SCALE_FACTOR - Sensor axis scaling (ideally unity).
55 SCALE_FACTOR = 0x02,
120 float scale_factor[3]; member in struct:online_calibration::CalibrationTypeFlags::CalibrationDataThreeAxis
145 scale_factor[0] = 1.0f;
146 scale_factor[1] = 1.0f;
147 scale_factor[2] = 1.0f;
162 * corrected_data = scale_factor * (input_data - offset);
195 float scale_factor; member in struct:online_calibration::CalibrationTypeFlags::CalibrationDataSingleAxis
216 scale_factor = 1.0f;
  /external/swiftshader/tests/OGLSimpleCube/
OGLSimpleCube.cpp 35 #define SCALE_FACTOR 0.5
51 GLfloat S[16] = { SCALE_FACTOR, 0, 0, 0, 0, SCALE_FACTOR, 0, 0, 0, 0, SCALE_FACTOR, 0, 0, 0, 0, 1 };
  /external/libvpx/libvpx/vpx/src/
svc_encodeframe.c 63 SCALE_FACTOR,
133 if (type == SCALE_FACTOR) {
138 if (*value0 < option_min_values[SCALE_FACTOR] ||
139 *value1 < option_min_values[SCALE_FACTOR] ||
140 *value0 > option_max_values[SCALE_FACTOR] ||
141 *value1 > option_max_values[SCALE_FACTOR] ||
168 (option1 == NULL && type == SCALE_FACTOR))
228 res = parse_layer_options_from_string(svc_ctx, SCALE_FACTOR, option_value,
  /frameworks/base/core/java/android/view/
ScaleGestureDetector.java 154 private static final float SCALE_FACTOR = .5f;
551 final float spanDiff = (Math.abs(1 - (mCurrSpan / mPrevSpan)) * SCALE_FACTOR);
  /external/aac/libSACdec/src/
sac_bitdec.cpp     [all...]
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
ImageReaderSubPane.java 316 int SCALE_FACTOR = 2;
317 while (mConfiguredSize.getWidth() > (mImageView.getWidth() * SCALE_FACTOR << 1) ) {
318 SCALE_FACTOR <<= 1;
329 opts.inSampleSize = SCALE_FACTOR;
340 int w = mConfiguredSize.getWidth() / SCALE_FACTOR;
341 int h = mConfiguredSize.getHeight() / SCALE_FACTOR;
352 y++, rowStart += stride*SCALE_FACTOR) {
355 if (y * SCALE_FACTOR % 2 == 0) {
360 uRowStart += uStride*SCALE_FACTOR/2;
361 vRowStart += vStride*SCALE_FACTOR/2
    [all...]

Completed in 378 milliseconds