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

  /external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/
ImageSource.java 29 private int sHeight;
39 this.sHeight = bitmap.getHeight();
193 * @param sHeight height of the source image.
196 public ImageSource dimensions(int sWidth, int sHeight) {
199 this.sHeight = sHeight;
209 this.sHeight = this.sRegion.height();
234 return sHeight;
SubsamplingScaleImageView.java 209 private int sHeight;
437 this.sHeight = imageSource.getSHeight();
521 sHeight = 0;
635 if (sWidth > 0 && sHeight > 0) {
638 height = sHeight();
640 height = (int)((((double)sHeight()/(double)sWidth()) * width));
642 width = (int)((((double)sWidth()/(double)sHeight()) * height));
    [all...]
  /external/swiftshader/src/Device/
Blitter.hpp 90 int sHeight;
Blitter.cpp     [all...]
  /external/swiftshader/src/Renderer/
Blitter.hpp 90 int sHeight;
Blitter.cpp     [all...]
  /external/swiftshader/src/D3D9/
Direct3DVolumeTexture9.cpp 193 int sHeight = source->getHeight();
203 float h = (float)sHeight / (float)dHeight;
  /external/swiftshader/src/OpenGL/libGLES_CM/
Device.cpp 327 int sHeight = source->getHeight();
342 sRect.y1 = sHeight;
  /frameworks/av/media/libstagefright/
MediaCodecListOverrides.cpp 61 AString sHeight;
62 if (!splitString(minSize, "x", &sWidth, &sHeight)) {
63 if (!splitString(minSize, "*", &sWidth, &sHeight)) {
69 *height = strtol(sHeight.c_str(), NULL, 10);
  /external/swiftshader/src/OpenGL/libGLESv2/
Device.cpp 451 int sHeight = source->getHeight();
498 sRect.y1 = (float)sHeight;
524 sw::Rect srcClipRect(0, 0, sWidth, sHeight);
556 bool isOutOfBounds = (sRect.x0 < 0.0f) || (sRect.y0 < 0.0f) || (sRect.x1 > (float)sWidth) || (sRect.y1 > (float)sHeight);
561 (sRect.x1 == (float)sWidth) && (sRect.y1 == (float)sHeight) && (dRect.x1 == dWidth) && (dRect.y1 == dHeight);
646 int sHeight = source->getHeight();
652 if((sWidth == 0) || (sHeight == 0) || (sDepth == 0) ||
658 bool scaling = (sWidth != dWidth) || (sHeight != dHeight) || (sDepth != dDepth);
  /cts/tests/tests/media/src/android/media/cts/
EncodeVirtualDisplayTest.java 85 private static int sHeight = ENCODER_PARAM_TABLE[ENCODER_PARAM_TABLE.length-1][1];
193 sHeight = ENCODER_PARAM_TABLE[i][1];
197 Log.d(TAG, "encoder parameters changed: width = " + sWidth + ", height = " + sHeight
215 MediaFormat encoderFormat = MediaFormat.createVideoFormat(MIME_TYPE, sWidth, sHeight);
237 sWidth, sHeight, DENSITY, inputSurface, 0);
241 MediaFormat decoderFormat = MediaFormat.createVideoFormat(MIME_TYPE, sWidth, sHeight);
242 outputSurface = new OutputSurface(sWidth, sHeight);
290 String fileName = DEBUG_FILE_NAME_BASE + sWidth + "x" + sHeight + ".mp4";
485 int y = sHeight / 2;
  /external/swiftshader/src/D3D8/
Direct3DDevice8.cpp 430 int sHeight = sourceDescription.Height;
434 RECT sRect = {0, 0, sWidth, sHeight};
    [all...]

Completed in 410 milliseconds