Home
last modified time | relevance | path

Searched refs:SCALE (Results 1 – 9 of 9) sorted by relevance

/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
Dwb_vad_c.h31 #define SCALE 128 /* (UNITY*UNITY)/512 */ macro
57 #define THR_MIN (Word16)(1.6*SCALE) /* Minimum threshold */
58 #define THR_HIGH (Word16)(6*SCALE) /* Highest threshold */
59 #define THR_LOW (Word16)(1.7*SCALE) /* Lowest threshold */
64 #define SP_CH_MIN (Word16)(-0.75*SCALE)
65 #define SP_CH_MAX (Word16)(0.75*SCALE)
74 #define HANG_P2 (Word16)(4*SCALE) /* threshold for shortest hangover */
/frameworks/native/services/surfaceflinger/
DTransform.cpp144 H.mType = (FLIP_H << 8) | SCALE; in set()
152 V.mType = (FLIP_V << 8) | SCALE; in set()
288 mType ^= SCALE; in type()
290 mType ^= SCALE; in type()
292 mType |= SCALE; in type()
376 if (!(mType&(SCALE|ROTATE|TRANSLATE))) in dump()
378 if (mType&SCALE) in dump()
DTransform.h58 SCALE = 0x4, enumerator
DDisplayDevice.cpp558 (type >= Transform::SCALE));
DLayer.cpp1543 (type >= Transform::SCALE));
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDessertCaseView.java121 public static final float SCALE = 0.25f; // natural display size will be SCALE*mCellSize field in DessertCaseView
259 setScaleX(SCALE); in onSizeChanged()
260 setScaleY(SCALE); in onSizeChanged()
261 setTranslationX(0.5f * (mWidth - mCellSize * mColumns) * SCALE); in onSizeChanged()
262 setTranslationY(0.5f * (mHeight - mCellSize * mRows) * SCALE); in onSizeChanged()
530 final int w2 = (int) (w / mView.SCALE / 2);
531 final int h2 = (int) (h / mView.SCALE / 2);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DAnimationProps.java43 @IntDef({ALL, TRANSLATION_X, TRANSLATION_Y, TRANSLATION_Z, ALPHA, SCALE, BOUNDS})
51 public static final int SCALE = 5; field in AnimationProps
DTaskViewTransform.java169 animators.add(animation.apply(AnimationProps.SCALE, anim)); in applyToTaskView()
/frameworks/base/docs/html/training/custom-views/
Dmaking-interactive.jd166 … mScroller.fling(currentX, currentY, velocityX / SCALE, velocityY / SCALE, minX, minY, maxX, maxY);