Searched refs:tw (Results 1 – 5 of 5) sorted by relevance
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/ |
D | ImageProcessingActivityJB.java | 678 int tw = mBitmapWidth; in startProcessor() local 681 if (tw > mScreenWidth || th > mScreenHeight) { in startProcessor() 682 float s1 = (float)tw / (float)mScreenWidth; in startProcessor() 686 tw /= s1; in startProcessor() 689 tw /= s2; in startProcessor() 694 android.util.Log.v("rs", "TV sizes " + tw + ", " + th); in startProcessor() 696 mDisplayView.mWidth = tw; in startProcessor()
|
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/ |
D | ImageProcessingActivity2.java | 723 int tw = mBitmapWidth; in startProcessor() local 726 if (tw > mScreenWidth || th > mScreenHeight) { in startProcessor() 727 float s1 = (float)tw / (float)mScreenWidth; in startProcessor() 731 tw /= s1; in startProcessor() 734 tw /= s2; in startProcessor() 739 android.util.Log.v("rs", "TV sizes " + tw + ", " + th); in startProcessor() 741 mDisplayViewIO.mWidth = tw; in startProcessor()
|
/frameworks/base/cmds/bootanimation/ |
D | BootAnimation.cpp | 267 int tw = 1 << (31 - __builtin_clz(w)); in initTexture() local 269 if (tw < w) tw <<= 1; in initTexture() 274 if (!mUseNpotTextures && (tw != w || th != h)) { in initTexture() 275 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tw, th, 0, GL_RGBA, in initTexture() 286 if (!mUseNpotTextures && (tw != w || th != h)) { in initTexture() 287 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, tw, th, 0, GL_RGB, in initTexture()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | StatusBarIconView.java | 536 final int tw = r.right - r.left; in placeNumber() local 539 int dw = r.left + tw + r.right; in placeNumber()
|
/frameworks/base/core/java/android/app/ |
D | ActivityManager.java | 2191 final int tw = thumbnail.getWidth(); in addAppTask() local 2193 if (tw != size.x || th != size.y) { in addAppTask() 2199 if (tw * size.x > size.y * th) { in addAppTask() 2201 dx = (size.y - tw * scale) * 0.5f; in addAppTask() 2203 scale = (float) size.y / (float) tw; in addAppTask()
|