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

  /external/skia/tests/
PathOpsCubicQuadIntersectionTest.cpp 79 SkDPoint xy2 = quad.ptAtT(tt2); local
80 if (!xy1.approximatelyEqual(xy2)) {
82 __FUNCTION__, iIndex, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY);
84 REPORTER_ASSERT(reporter, xy1.approximatelyEqual(xy2));
PathOpsCubicLineIntersectionTest.cpp 69 SkDPoint xy2 = line.ptAtT(tt2); local
70 if (!xy1.approximatelyEqual(xy2)) {
72 __FUNCTION__, iIndex, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY);
74 REPORTER_ASSERT(reporter, xy1.approximatelyEqual(xy2));
PathOpsCubicIntersectionTest.cpp 55 SkDPoint xy2 = cubic2.ptAtT(tt2); local
56 if (!xy1.approximatelyEqual(xy2)) {
58 __FUNCTION__, (int)index, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY);
60 REPORTER_ASSERT(reporter, xy1.approximatelyEqual(xy2));
344 SkDPoint xy1, xy2; local
349 xy2 = cubic2.ptAtT(tt2);
354 iPt.fY, xy2.fX, xy2.fY, tt2);
357 REPORTER_ASSERT(reporter, xy2.approximatelyEqual(iPt))
436 SkDPoint xy2 = cubic2.ptAtT(tt2); local
    [all...]
PathOpsQuadIntersectionTest.cpp 42 SkDPoint xy2 = quad2.ptAtT(tt2); local
43 if (!xy1.approximatelyEqual(xy2)) {
46 tt2, xy2.fX, xy2.fY);
272 SkDPoint xy2 = quad2.ptAtT(tt2); local
273 if (!xy1.approximatelyEqual(xy2)) {
276 tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY);
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/
vmw_screen_dri.c 128 int xy2; local
132 xy2 = ((int)src->x2 < (int)bbox->x2 + dst_x) ? src->x2 :
134 if (xy1 >= xy2 || xy1 < 0)
138 dst->x2 = xy2;
142 xy2 = ((int)src->y2 < (int)bbox->y2 + dst_y) ? src->y2 :
144 if (xy1 >= xy2 || xy1 < 0)
148 dst->y2 = xy2;
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_screen_dri.c 128 int xy2; local
132 xy2 = ((int)src->x2 < (int)bbox->x2 + dst_x) ? src->x2 :
134 if (xy1 >= xy2 || xy1 < 0)
138 dst->x2 = xy2;
142 xy2 = ((int)src->y2 < (int)bbox->y2 + dst_y) ? src->y2 :
144 if (xy1 >= xy2 || xy1 < 0)
148 dst->y2 = xy2;
  /external/chromium_org/third_party/opus/src/celt/x86/
pitch_sse.h 76 int N, opus_val32 *xy1, opus_val32 *xy2)
96 _mm_store_ss(xy2, xsum2);
100 *xy2 = MAC16_16(*xy2, x[i], y02[i]);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p3-0x.cpp 23 X<Y&> xy2 = f0(lvalue<Y>()); local
  /external/chromium_org/third_party/opus/src/celt/
pitch.h 123 int N, opus_val32 *xy1, opus_val32 *xy2)
134 *xy2 = xy02;
pitch.c 404 opus_val32 xy,xx,yy,xy2; local
468 dual_inner_prod(x, &x[-T1], &x[-T1b], N, &xy, &xy2);
469 xy += xy2;
  /external/speex/libspeex/
filters_bfin.h 87 VARDECL(spx_word32_t *xy2);
93 ALLOC(xy2, (N+1), spx_word32_t);
95 xy = xy2+1;
  /cts/tests/tests/widget/src/android/widget/cts/
ToastTest.java 283 int[] xy2 = new int[2]; local
284 view.getLocationOnScreen(xy2);
287 assertTrue(xy1[0] > xy2[0]);
288 assertTrue(xy1[1] < xy2[1]);

Completed in 795 milliseconds