Searched refs:mScale (Results 1 - 9 of 9) sorted by last modified time

/frameworks/base/voip/jni/rtp/
H A DEchoSuppressor.cpp52 mScale = 1 << shift;
103 for (int i = mWindowSize - 1, j = 0; i >= 0; --i, j += mScale) {
105 for (int k = 0; k < mScale; ++k) {
129 for (int i = mWindowSize - 1, j = 0; i >= 0; --i, j += mScale) {
131 for (int k = 0; k < mScale; ++k) {
181 // latency * mScale);
H A DEchoSuppressor.h32 int mScale; member in class:EchoSuppressor
/frameworks/base/tests/TransformTest/src/com/google/android/test/transform/
H A DTransformTestActivity.java68 private float mScale = 1.f; field in class:TransformTestActivity.TransformView
83 if (mScale * scale > 0.1f) {
84 if (mScale * scale < 10.f) {
85 mScale *= scale;
87 mScale = 10.f;
90 mScale = 0.1f;
93 Log.d("ttest", "mScale: " + mScale + " mPos: (" + mPosX + ", " + mPosY + ")");
107 mMatrix.postScale(mScale, mScale);
[all...]
/frameworks/base/media/libstagefright/
H A DAVIExtractor.cpp655 track->mScale = scale;
1157 *sampleTimeUs = (sampleIndex * 1000000ll * track.mRate) / track.mScale;
1186 / track.mRate * track.mScale / 1000000ll;
1197 closestSampleIndex = timeUs / track.mRate * track.mScale / 1000000ll;
/frameworks/base/media/libstagefright/include/
H A DAVIExtractor.h56 uint32_t mScale; member in struct:android::AVIExtractor::Track
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java74 private float mScale[]; field in class:SoundPoolTest.TestThread
154 int count = mScale.length;
157 NORMAL_PRIORITY, DEFAULT_LOOP, mScale[step]);
176 int count = mScale.length;
178 NORMAL_PRIORITY, DEFAULT_LOOP, mScale[0]);
188 mSoundPool.setRate(id, mScale[step]);
189 if (DEBUG) Log.d(LOG_TAG, "Change rate " + mScale[step]);
269 NORMAL_PRIORITY, DEFAULT_LOOP, mScale[i]);
298 int id = mSoundPool.play(mSounds[0], 0.0f, 1.0f, NORMAL_PRIORITY, DEFAULT_LOOP, mScale[0]);
329 mScale
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java2987 float mScale; field in class:WebView.ViewSizeData
3035 data.mScale = mZoomManager.getScale();
H A DWebViewCore.java1888 float scale = data.mScale;
2480 data.mScale = -1.0f;
2516 data.mScale = (float) webViewWidth / windowWidth;
2519 data.mScale = Math.max(data.mScale, tentativeScale);
2528 data.mScale = tentativeScale;
2535 + " data.mScale= " + data.mScale
2538 data.mWidth = Math.round(webViewWidth / data.mScale);
2545 Math.round(mWebView.getViewHeight() / data.mScale)
[all...]
/frameworks/base/core/java/android/app/
H A DActivityThread.java1357 final private float mScale; field in class:ActivityThread.ResourcesKey
1362 mScale = scale;
1363 mHash = mResDir.hashCode() << 2 + (int) (mScale * 2);
1377 return mResDir.equals(peer.mResDir) && mScale == peer.mScale;

Completed in 270 milliseconds