HomeSort by relevance Sort by last modified time
    Searched refs:y1 (Results 801 - 825 of 1250) sorted by null

<<31323334353637383940>>

  /external/opencv/cv/src/
cvhough.cpp 910 int sx, sy, x0, y0, x1, y1, r, k; local
939 for( x1 = x0, y1 = y0, r = min_radius; r <= max_radius; x1 += sx, y1 += sy, r++ )
941 int x2 = x1 >> SHIFT, y2 = y1 >> SHIFT;
    [all...]
cvhaar.cpp 1012 int y1 = i*strip_size, y2 = (i+1)*strip_size\/* - ystep + 1*\/; local
    [all...]
  /external/opencv3/modules/imgproc/src/
shapedescr.cpp 46 static int intersectLines( double x1, double dx1, double y1, double dy1,
54 *t2 = ((x2 - x1) * dy1 - (y2 - y1) * dx1) / d;
67 double y1 = (pt0.y + pt1.y) * 0.5; local
73 if( intersectLines( x1, dx1, y1, dy1, x2, dx2, y2, dy2, &t ) >= 0 )
  /external/pdfium/core/src/fxge/apple/
fx_quartz_device.cpp 414 FX_FLOAT y1,
426 CGPointApplyAffineTransform(CGPointMake(x1, y1), _foxitDevice2User);
428 y1 = pt.y;
436 CGContextMoveToPoint(_context, x1, y1);
    [all...]
  /external/pdfium/core/src/fxge/dib/
fx_dib_transform.cpp 160 int& y1,
164 y1 = b * x + d * y + f + base / 2;
166 res_y = y1 % base;
174 y1 /= base;
    [all...]
fx_dib_engine.cpp 811 int c0, m0, y0, k0, c1, m1, y1, k1; local
813 CmykDecode(pSource->GetPaletteEntry(1), c1, m1, y1, k1);
817 int y = y0 + (y1 - y0) * i / 255;
    [all...]
  /external/pdfium/third_party/libopenjpeg20/
t2.c     [all...]
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /external/ImageMagick/MagickCore/
widget.c 239 y1,
252 y1=bevel_info->y+bevel_info->height;
257 points[0].y=y1;
267 points[5].y=y1+bevel_width;
275 points[0].y=y1;
277 points[1].y=y1;
283 points[4].y=y1+bevel_width;
285 points[5].y=y1+bevel_width;
661 y1,
678 y1=triangle_info->y
231 y1, local
648 y1, local
774 y1, local
884 y1, local
    [all...]
  /external/libvncserver/libvncserver/
rfbserver.c 858 int y1=Swap16IfLE(*y); local
862 rfbScaledCorrection(cl->scaledScreen, cl->screen, &x1, &y1, &w1, &h1, "rectSwapIfLEAndClip");
864 *y = y1;
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
row_common.cc 1021 uint32 y1 = (uint32)(y * 0x0101 * YG) >> 16; local
1029 uint32 y1 = (uint32)(y * 0x0101 * YG) >> 16; local
1069 uint32 y1 = (uint32)(y * 0x0101 * YGJ) >> 16; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_blit.c 329 float x0, float y0, float x1, float y1,
348 ctx->vertices[2][0][1] = y1;
354 ctx->vertices[3][0][1] = y1;
  /external/mesa3d/src/gallium/state_trackers/vega/
image.c 529 VGfloat x1, y1; local
541 y1 = 0;
558 x1, y1, x2, y2, x3, y3, x4, y4);
  /external/opencv3/modules/objdetect/src/
haar.cpp 1309 int y1 = range.start*stripSize, y2 = std::min(range.end*stripSize, sum1.rows - 1 - winSize0.height); local
    [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_ps.cpp 119 FX_FLOAT y1 = pPathData->GetPointY(i + 1); local
122 pObject2Device->Transform(x1, y1);
125 buf << " " << x1 << " " << y1 << " " << x2 << " " << y2;
  /external/webrtc/webrtc/base/
virtualsocketserver.cc 1065 double y1 = (iter - 1)->second; local
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
GLES20Canvas.java 479 public void drawLine(float x1, float y1, float x2, float y2, GLPaint paint) {
480 draw(GLES20.GL_LINE_STRIP, OFFSET_DRAW_LINE, COUNT_LINE_VERTEX, x1, y1, x2 - x1, y2 - y1,
    [all...]
  /frameworks/rs/
rsFont.cpp 664 void FontState::appendMeshQuad(float x1, float y1, float z1,
676 if (x1 > mSurfaceWidth || y1 < 0.0f || x2 < 0 || y4 > mSurfaceHeight) {
680 /*LOGE("V0 x: %f y: %f z: %f", x1, y1, z1);
686 (*currentPos++) = y1;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/mips-dspr2/
vp9_rtcd.h 215 void vp9_blend_mb_inner_c(uint8_t *y, uint8_t *u, uint8_t *v, int y1, int u1, int v1, int alpha, int stride);
218 void vp9_blend_mb_outer_c(uint8_t *y, uint8_t *u, uint8_t *v, int y1, int u1, int v1, int alpha, int stride);
221 void vp9_blend_b_c(uint8_t *y, uint8_t *u, uint8_t *v, int y1, int u1, int v1, int alpha, int stride);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES20Canvas.java 479 public void drawLine(float x1, float y1, float x2, float y2, GLPaint paint) {
480 draw(GLES20.GL_LINE_STRIP, OFFSET_DRAW_LINE, COUNT_LINE_VERTEX, x1, y1, x2 - x1, y2 - y1,
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
GLES20Canvas.java 477 public void drawLine(float x1, float y1, float x2, float y2, GLPaint paint) {
478 draw(GLES20.GL_LINE_STRIP, OFFSET_DRAW_LINE, COUNT_LINE_VERTEX, x1, y1, x2 - x1, y2 - y1,
    [all...]
  /external/deqp/modules/gles2/functional/
es2fDepthStencilTests.cpp 286 for (int y1 = 0; y1 < numL1CellsY; y1++)
291 int y = y0*cellL0Height + y1*cellL1Height;
298 renderCmd.params.depth = depthValues[y1*numL1CellsX + x1];;
    [all...]
es2fMultisampleTests.cpp 1327 float y1 = (float)(row+1) \/ (float)numQuadRowsCols * 2.0f - 1.0f; local
    [all...]
  /external/deqp/modules/gles3/functional/
es3fDepthStencilTests.cpp 286 for (int y1 = 0; y1 < numL1CellsY; y1++)
291 int y = y0*cellL0Height + y1*cellL1Height;
298 renderCmd.params.depth = depthValues[y1*numL1CellsX + x1];;
    [all...]
es3fMultisampleTests.cpp 1480 float y1 = (float)(row+1) \/ (float)numQuadRowsCols * 2.0f - 1.0f; local
    [all...]

Completed in 1981 milliseconds

<<31323334353637383940>>