HomeSort by relevance Sort by last modified time
    Searched refs:width2 (Results 1 - 25 of 38) sorted by null

1 2

  /frameworks/base/core/java/android/hardware/camera2/legacy/
SizeAreaComparator.java 47 long width2 = size2.width; local
49 long area2 = width2 * size2.height;
52 return (width > width2) ? 1 : -1;
  /frameworks/base/core/java/android/hardware/camera2/utils/
SizeAreaComparator.java 46 long width2 = size2.getWidth(); local
48 long area2 = width2 * size2.getHeight();
51 return (width > width2) ? 1 : -1;
  /external/pixman/test/
scaling-helpers-test.c 59 int32_t left_pad2, left_tz2, width2, right_tz2, right_pad2; local
64 width1 = width2 = width;
80 &width2,
86 assert (width1 == width2);
  /external/chromium_org/chrome/renderer/
web_apps_unittest.cc 19 const int width2; member in struct:TestData
57 ASSERT_EQ(data[i].width2, sizes[1].width());
  /external/chromium_org/native_client_sdk/src/examples/api/gamepad/
gamepad.cc 137 int width2 = width() / gamepad_data.length / 2; local
139 int offset = width2 * 2 * p;
147 int x = static_cast<int>(pad.axes[i + 0] * width2 + width2) + offset;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_resize.h 23 int width2,
vp9_resize.c 512 int width2,
515 uint8_t *intbuf = (uint8_t *)malloc(sizeof(uint8_t) * width2 * height);
521 intbuf + width2 * i, width2, tmpbuf);
522 for (i = 0; i < width2; ++i) {
523 fill_col_to_arr(intbuf + i, width2, height, arrbuf);
  /external/libvpx/libvpx/vp9/encoder/
vp9_resize.h 23 int width2,
vp9_resize.c 512 int width2,
515 uint8_t *intbuf = (uint8_t *)malloc(sizeof(uint8_t) * width2 * height);
521 intbuf + width2 * i, width2, tmpbuf);
522 for (i = 0; i < width2; ++i) {
523 fill_col_to_arr(intbuf + i, width2, height, arrbuf);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_resize.h 23 int width2,
vp9_resize.c 512 int width2,
515 uint8_t *intbuf = (uint8_t *)malloc(sizeof(uint8_t) * width2 * height);
521 intbuf + width2 * i, width2, tmpbuf);
522 for (i = 0; i < width2; ++i) {
523 fill_col_to_arr(intbuf + i, width2, height, arrbuf);
  /external/chromium_org/ppapi/examples/gamepad/
gamepad.cc 96 int width2 = size.width() / 2; local
101 gamepad_data.items[0].axes[i + 0] * width2 + width2);
  /dalvik/dexgen/src/com/android/dexgen/util/
TwoColumnOutput.java 57 * @param width2 {@code > 0;} width of the second column
61 String s2, int width2) {
67 new TwoColumnOutput(sw, width1, width2, spacer);
ByteArrayAnnotatedOutput.java 480 int width2 = getAnnotationWidth(); local
481 int width1 = annotationWidth - width2 - 1;
483 TwoColumnOutput twoc = new TwoColumnOutput(out, width1, width2, "|");
  /dalvik/dx/src/com/android/dx/util/
TwoColumnOutput.java 57 * @param width2 {@code > 0;} width of the second column
61 String s2, int width2) {
67 new TwoColumnOutput(sw, width1, width2, spacer);
ByteArrayAnnotatedOutput.java 476 int width2 = getAnnotationWidth(); local
477 int width1 = annotationWidth - width2 - 1;
479 TwoColumnOutput twoc = new TwoColumnOutput(out, width1, width2, "|");
  /external/dexmaker/src/dx/java/com/android/dx/util/
TwoColumnOutput.java 57 * @param width2 {@code > 0;} width of the second column
61 String s2, int width2) {
67 new TwoColumnOutput(sw, width1, width2, spacer);
ByteArrayAnnotatedOutput.java 473 int width2 = getAnnotationWidth(); local
474 int width1 = annotationWidth - width2 - 1;
476 TwoColumnOutput twoc = new TwoColumnOutput(out, width1, width2, "|");
  /external/chromium_org/third_party/skia/tests/
FontObjTest.cpp 102 SkScalar width2 = paint.measureText(txt, strlen(txt), &bounds); local
104 REPORTER_ASSERT(reporter, width1 == width2);
  /external/skia/tests/
FontObjTest.cpp 102 SkScalar width2 = paint.measureText(txt, strlen(txt), &bounds); local
104 REPORTER_ASSERT(reporter, width1 == width2);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
post_filter.cpp 190 int d, offset, nMBPerRow, nMBPerCol, width2 = (width << 1); local
223 A = *(rec_y - width2);
274 *(rec_y - width2) = A - d2;
320 A = *(rec_y - width2);
371 *(rec_y - width2) = A - d2;
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoder.cpp 77 inline void findBlendRangeAtRow(const WebCore::IntRect& src, const WebCore::IntRect& dst, int canvasY, int& left1, int& width1, int& left2, int& width2)
83 width2 = 0;
98 width2 = src.maxX() - dst.maxX();
521 int left1, width1, left2, width2;
522 findBlendRangeAtRow(frameRect, prevRect, canvasY, left1, width1, left2, width2);
525 if (width2 > 0)
526 m_blendFunction(buffer, prevBuffer, canvasY, left2, width2);
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
AffineTransform.cpp 259 double width2 = size.width() * xScale(); local
262 return IntSize(lround(width2), lround(height2));
267 double width2 = size.width() * xScale(); local
270 return FloatSize(narrowPrecisionToFloat(width2), narrowPrecisionToFloat(height2));
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xmesaP.h 163 GLint width2; member in struct:xmesa_renderbuffer
315 ( (XRB)->origin2 - (Y) * (XRB)->width2 + (X) )
  /external/mesa3d/src/mesa/drivers/x11/
xmesaP.h 163 GLint width2; member in struct:xmesa_renderbuffer
315 ( (XRB)->origin2 - (Y) * (XRB)->width2 + (X) )

Completed in 700 milliseconds

1 2