HomeSort by relevance Sort by last modified time
    Searched refs:sWidth (Results 1 - 15 of 15) sorted by null

  /external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/
ImageSource.java 28 private int sWidth;
38 this.sWidth = bitmap.getWidth();
192 * @param sWidth width of the source image.
196 public ImageSource dimensions(int sWidth, int sHeight) {
198 this.sWidth = sWidth;
208 this.sWidth = this.sRegion.width();
230 return sWidth;
SubsamplingScaleImageView.java 208 private int sWidth;
436 this.sWidth = imageSource.getSWidth();
520 sWidth = 0;
635 if (sWidth > 0 && sHeight > 0) {
637 width = sWidth();
640 height = (int)((((double)sHeight()/(double)sWidth()) * width));
642 width = (int)((((double)sWidth()/(double)sHeight()) * height));
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
EncodeVirtualDisplayTest.java 84 private static int sWidth = ENCODER_PARAM_TABLE[ENCODER_PARAM_TABLE.length-1][0];
192 sWidth = ENCODER_PARAM_TABLE[i][0];
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";
484 int x = sWidth / 2;
  /external/swiftshader/src/Device/
Blitter.hpp 89 int sWidth;
Blitter.cpp     [all...]
  /external/swiftshader/src/Renderer/
Blitter.hpp 89 int sWidth;
Blitter.cpp     [all...]
  /frameworks/av/media/libstagefright/
MediaCodecListOverrides.cpp 60 AString sWidth;
62 if (!splitString(minSize, "x", &sWidth, &sHeight)) {
63 if (!splitString(minSize, "*", &sWidth, &sHeight)) {
68 *width = strtol(sWidth.c_str(), NULL, 10);
  /external/swiftshader/src/D3D9/
Direct3DVolumeTexture9.cpp 192 int sWidth = source->getWidth();
202 float w = (float)sWidth / (float)dWidth;
Direct3DDevice9.cpp     [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
Device.cpp 450 int sWidth = source->getWidth();
499 sRect.x1 = (float)sWidth;
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);
645 int sWidth = source->getWidth();
652 if((sWidth == 0) || (sHeight == 0) || (sDepth == 0) ||
658 bool scaling = (sWidth != dWidth) || (sHeight != dHeight) || (sDepth != dDepth);
  /external/swiftshader/src/OpenGL/libGLES_CM/
Device.cpp 326 int sWidth = source->getWidth();
343 sRect.x1 = sWidth;
  /external/swiftshader/src/D3D8/
Direct3DDevice8.cpp 429 int sWidth = sourceDescription.Width;
434 RECT sRect = {0, 0, sWidth, sHeight};
    [all...]
  /external/skia/modules/canvaskit/htmlcanvas/
canvas2dcontext.js 601 // - image, sx, sy, sWidth, sHeight, dx, dy, dWidth, dHeight
    [all...]
  /external/skqp/experimental/canvaskit/htmlcanvas/
canvas2dcontext.js 601 // - image, sx, sy, sWidth, sHeight, dx, dy, dWidth, dHeight
    [all...]

Completed in 408 milliseconds