HomeSort by relevance Sort by last modified time
    Searched refs:y2 (Results 176 - 200 of 878) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libvncserver/libvncserver/
main.c 371 for(j=rect.y1;j<rect.y2;j++,out+=rowstride,in+=rowstride)
374 out += rowstride*(rect.y2-rect.y1-1);
375 in += rowstride*(rect.y2-rect.y1-1);
376 for(j=rect.y2-1;j>=rect.y1;j--,out-=rowstride,in-=rowstride)
385 void rfbDoCopyRect(rfbScreenInfoPtr screen,int x1,int y1,int x2,int y2,int dx,int dy)
387 sraRegionPtr region = sraRgnCreateRect(x1,y1,x2,y2);
392 void rfbScheduleCopyRect(rfbScreenInfoPtr screen,int x1,int y1,int x2,int y2,int dx,int dy)
394 sraRegionPtr region = sraRgnCreateRect(x1,y1,x2,y2);
415 void rfbScaledScreenUpdate(rfbScreenInfoPtr screen, int x1, int y1, int x2, int y2);
416 void rfbMarkRectAsModified(rfbScreenInfoPtr screen,int x1,int y1,int x2,int y2)
    [all...]
  /external/opencv3/modules/imgproc/src/
featureselect.cpp 201 int y2 = y_cell + 1; local
207 y2 = std::min(grid_height - 1, y2);
209 for( int yy = y1; yy <= y2; yy++ )
345 int y2 = y_cell + 1; local
351 y2 = std::min(grid_height-1, y2);
353 for( int yy = y1; yy <= y2; yy++ )
  /external/opencv3/samples/python2/
contours.py 27 x2, y2 = np.int32([dx+100+j*10-30*c, dy+100-30*s])
28 cv2.line(img, (x1, y1), (x2, y2), white)
mosse.py 52 x1, y1, x2, y2 = rect
53 w, h = map(cv2.getOptimalDFTSize, [x2-x1, y2-y1])
54 x1, y1 = (x1+x2-w)//2, (y1+y2-h)//2
110 x1, y1, x2, y2 = int(x-0.5*w), int(y-0.5*h), int(x+0.5*w), int(y+0.5*h)
111 cv2.rectangle(vis, (x1, y1), (x2, y2), (0, 0, 255))
115 cv2.line(vis, (x1, y1), (x2, y2), (0, 0, 255))
116 cv2.line(vis, (x2, y1), (x1, y2), (0, 0, 255))
117 draw_str(vis, (x1, y2+16), 'PSR: %.2f' % self.psr)
  /external/pdfium/third_party/agg23/
agg_renderer_base.h 82 return m_clip_box.y2;
102 return m_clip_box.y2;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPath.java 40 public void quadTo(float x1, float y1, float x2, float y2) {
42 "ending at (" +x2+","+ y2 + ")";
  /external/skia/src/animator/
SkPathParts.h 74 SkScalar y2; member in class:SkQuadTo
92 SkScalar y2; member in class:SkCubicTo
  /external/tpm2/
Commit.c 22 // TPM_RC_SIZE s2 is empty but y2 is not or s2 provided but y2 is not
57 if((in->s2.t.size == 0) != (in->y2.t.size == 0))
75 // Set up P2 if s2 and Y2 are provided
80 // copy y2 for P2
81 MemoryCopy2B(&P2.y.b, &in->y2.b, sizeof(P2.y.t.buffer));
  /external/v8/test/webkit/
for-in-cached.js 61 forIn3({ y2 : 2, __proto__: null });
62 forIn3({ y2 : 2, __proto__: null });
63 shouldBe("forIn3({ y2 : 2, __proto__: null })", "['x', 'y2']");
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NoisyVelocityTracker.java 42 public MotionEventCopy(float x2, float y2, long eventTime) {
44 this.y = y2;
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
GLCanvas.java 81 // Draws a line using the specified paint from (x1, y1) to (x2, y2).
83 public abstract void drawLine(float x1, float y1, float x2, float y2, GLPaint paint);
85 // Draws a rectangle using the specified paint from (x1, y1) to (x2, y2).
87 public abstract void drawRect(float x1, float y1, float x2, float y2, GLPaint paint);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLCanvas.java 83 // Draws a line using the specified paint from (x1, y1) to (x2, y2).
85 public abstract void drawLine(float x1, float y1, float x2, float y2, GLPaint paint);
87 // Draws a rectangle using the specified paint from (x1, y1) to (x2, y2).
89 public abstract void drawRect(float x1, float y1, float x2, float y2, GLPaint paint);
  /packages/apps/Messaging/src/com/android/messaging/util/
CubicBezierInterpolator.java 31 public CubicBezierInterpolator(final float x1, final float y1, final float x2, final float y2) {
35 mY2 = y2;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 99 int y2 = y1 + h; local
101 if (x2 < bounds.x || y2 < bounds.y || x1 > bounds.x2() || y1 > bounds.y2()) {
112 addCenterColumnMatch(bounds, x1, y1, x2, y2, columnMatches, max);
119 addBottomMatch(y2, rowMatches, max);
127 addRowGapMatch(bounds, y1, y2, rowMatches, max);
136 y2 = y1 + h;
202 if (y1 >= bounds.y2()) {
291 private void addCenterColumnMatch(Rect bounds, int x1, int y1, int x2, int y2,
293 Collection<INode> intersectsRow = mGrid.getIntersectsRow(y1, y2);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
MoveHandler.java 197 if (mBounds.y2() > layoutBounds.y2()) {
198 mBounds.y -= mBounds.y2() - layoutBounds.y2();
212 edge = new Segment(b.y2(), b.x, b.x2(), null, null, BOTTOM, NO_MARGIN);
215 edge = new Segment(b.x, b.y, b.y2(), null, null, LEFT, NO_MARGIN);
217 edge = new Segment(b.x2(), b.y, b.y2(), null, null, RIGHT, NO_MARGIN);
221 edge = new Segment(b.centerX(), b.y, b.y2(), null, null, CENTER_VERTICAL, NO_MARGIN);
  /frameworks/rs/cpu_ref/
rsCpuIntrinsics_x86.cpp 80 const void *y1, const void *y2,
108 p8 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*((int32_t *)y2)), _mm_setzero_si128());
109 p9 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*((int32_t *)y2+1)), _mm_setzero_si128());
110 p10 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*((int32_t *)y2+2)), _mm_setzero_si128());
111 p11 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*((int32_t *)y2+3)), _mm_setzero_si128());
137 y2 = (const char *)y2 + 8;
154 __m128i x2, y2, z2, w2; local
171 y2 = _mm_madd_epi16(xy, _mm_shuffle_epi32(c0, 0x55));
176 y2 = _mm_add_epi32(y2, _mm_madd_epi16(zw, _mm_shuffle_epi32(c2, 0x55)))
210 __m128i x2, y2, z2, w2; local
262 __m128i x2, y2, z2, w2; local
455 __m128i y1, y2, y3, y4; local
517 __m128i y1, y2, y3, y4; local
578 __m128i y1, y2, y3, y4; local
    [all...]
  /hardware/bsp/intel/peripheral/libupm/src/lcd/
eboled.cxx 346 void EBOLED::drawTriangle(int8_t x0, int8_t y0, int8_t x1, int8_t y1, int8_t x2, int8_t y2, uint8_t color)
349 drawLine(x1, y1, x2, y2, color);
350 drawLine(x2, y2, x0, y0, color);
353 void EBOLED::drawTriangleFilled ( int8_t x0, int8_t y0, int8_t x1, int8_t y1, int8_t x2, int8_t y2, uint8_t color) {
357 // Sort coordinates by Y order (y2 >= y1 >= y0)
361 if (y1 > y2) {
362 swap(y2, y1); swap(x2, x1);
368 if(y0 == y2) { // Handle awkward all-on-same-line case as its own thing
382 dy02 = y2 - y0,
384 dy12 = y2 - y1
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
CpuSpriteBatch.java 324 float y2; local
339 y2 = sin * p2x + cos * p2y;
345 y4 = y3 - (y2 - y1);
351 y2 = p2y;
363 y2 += worldOriginY;
388 vertices[idx + 5] = t.m00 * x2 + t.m01 * y2 + t.m02;
389 vertices[idx + 6] = t.m10 * x2 + t.m11 * y2 + t.m12;
446 float y2; local
461 y2 = sin * p2x + cos * p2y;
467 y4 = y3 - (y2 - y1)
554 float y2 = t.m11 * height + t.m12; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtils.java 241 int x1, y1, x2, y2; local
246 y2 = initialCrop.y + initialCrop.h;
251 y2 = image.getHeight();
255 if (x1 == x2 || y1 == y2) {
269 topEdge: for (; y1 < y2; y1++) {
284 for (int y = y1; y < y2; y++) {
293 for (int y = y1; y < y2; y++) {
301 bottomEdge: for (; y2 > y1; y2--) {
303 if (!filter.crop(image, x, y2 - 1))
    [all...]
  /bootable/recovery/minui/
minui.h 47 void gr_fill(int x1, int y1, int x2, int y2);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
IntrinsicColorMatrix.java 49 int x1 = 0, y1 = 0, x2 = w, y2 = h; local
54 y2 = h - 11;
60 mSi.forEach(mAllocSrc, mAllocDst, makeClipper(x1, y1, x2, y2));
64 mSr.invoke_reference(mat, add, mAllocSrc, mAllocRef, x1, y1, x2, y2);
intrinsic_colormatrix.rs 21 int x1, int y1, int x2, int y2) {
29 for (uint32_t y = y1; y < y2; y++) {
  /external/ImageMagick/coders/
pes.c 537 bounds.y2=(-65535.0);
610 if ((double) y > bounds.y2)
611 bounds.y2=(double) y;
642 bounds.y2-bounds.y1);
  /external/clang/test/SemaCXX/
dcl_init_aggr.cpp 92 float y2[4][3] = { { 1, 3, 5 }, { 2, 4, 6 }, { 3, 5, 7 } }; variable
  /external/clang/test/SemaTemplate/
instantiate-invalid.cpp 3 template<class Conv> class rasterizer_sl_clip Conv::xi(x2), Conv::yi(y2));

Completed in 1228 milliseconds

1 2 3 4 5 6 78 91011>>