HomeSort by relevance Sort by last modified time
    Searched defs:xc (Results 1 - 11 of 11) sorted by null

  /external/webkit/WebCore/platform/graphics/qt/
PathQt.cpp 236 qreal xc = p.x(); local
255 double xs = xc - radius;
272 m_path.moveTo(QPointF(xc + radius * cos(sar),
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 293 const GLint xc = (mWidth - mAndroid[0].w) / 2; local
295 const Rect updateRect(xc, yc, xc + mAndroid[0].w, yc + mAndroid[0].h);
313 GLint x = xc - offset;
326 glDrawTexiOES(xc, yc, 0, mAndroid[0].w, mAndroid[0].h);
436 const int xc = (mWidth - animation.width) / 2; local
442 clearReg.subtractSelf(Rect(xc, yc, xc+animation.width, yc+animation.height));
479 glDrawTexiOES(xc, yc, 0, animation.width, animation.height);
  /external/webkit/WebCore/svg/
SVGParserUtilities.cpp 232 double contrlx, contrly, curx, cury, subpathx, subpathy, tox, toy, x1, y1, x2, y2, xc, yc; local
453 xc = 2 * curx - contrlx;
456 px1 = relative ? (curx + 2 * xc) * (1.0 / 3.0) : (curx + 2 * xc) * (1.0 / 3.0);
458 px2 = relative ? ((curx + tox) + 2 * xc) * (1.0 / 3.0) : (tox + 2 * xc) * (1.0 / 3.0);
466 contrlx = xc;
541 double x0, y0, x1, y1, xc, yc; local
613 xc = 0.5 * (x0 + x1) - sfactor * (y1 - y0);
616 /* (xc, yc) is center of the circle. *
    [all...]
  /dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/
HandshakeCompletedEventTest.java 192 X509Certificate xc = X509Certificate.getInstance(bis); local
193 X509Certificate[] xcs = {xc};
  /system/core/libpixelflinger/
trap.cpp 158 GGLcoord xc = v[0]; local
161 xc = TRI_FLOOR(xc) + TRI_HALF;
164 xc = TRI_ROUND(xc);
167 GGLint l = (xc - halfSize) >> TRI_FRACTION_BITS;
169 GGLint r = (xc + halfSize) >> TRI_FRACTION_BITS;
231 int xc = r - l; local
233 if (xc>0 && yc>0) {
235 const int32_t sqr2Over2 = 0xC; // rounded u
296 int xc = r - l; local
433 int xc = r - l; local
    [all...]
scanline.cpp 491 int xc = x1 - xs; local
504 r = ADJUST_COLOR_ITERATOR(r, c->shade.drdx, xc);
505 g = ADJUST_COLOR_ITERATOR(g, c->shade.dgdx, xc);
506 b = ADJUST_COLOR_ITERATOR(b, c->shade.dbdx, xc);
507 a = ADJUST_COLOR_ITERATOR(a, c->shade.dadx, xc);
544 while (xc--) {
1081 const uint32_t xc = x1 - xs; local
1172 const uint32_t xc = x1 - xs; local
    [all...]
  /bionic/libc/stdlib/
strtod.c 674 ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0; local
707 xc = xc0;
710 z = (*x & 0xffff) * y + (*xc & 0xffff) + carry;
712 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
714 Storeinc(xc, z2, z);
717 *xc = carry;
721 xc = xc0;
723 z2 = *xc;
725 z = (*x & 0xffff) * y + (*xc >> 16) + carry;
727 Storeinc(xc, z, z2)
929 ULong *xa, *xae, *xb, *xbe, *xc; local
    [all...]
  /external/dropbear/libtommath/mtest/
mpi.c 2064 mp_int gx, xc, yc, u, v, A, B, C, D; local
    [all...]
  /external/v8/src/third_party/dtoa/
dtoa.c 757 ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0; local
791 xc = xc0;
794 z = *x++ * (ULLong)y + *xc + carry;
796 *xc++ = z & FFFFFFFF;
799 *xc = carry;
807 xc = xc0;
810 z = (*x & 0xffff) * y + (*xc & 0xffff) + carry;
812 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
814 Storeinc(xc, z2, z);
817 *xc = carry
1020 ULong *xa, *xae, *xb, *xbe, *xc; local
    [all...]
  /external/webkit/JavaScriptCore/wtf/
dtoa.cpp 472 uint32_t *xc, *xc0; local
491 for (xc = c.words(), xa = xc + wc; xc < xa; xc++)
492 *xc = 0;
502 xc = xc0;
505 z = *x++ * (unsigned long long)y + *xc + carry;
507 *xc++ = (uint32_t)z & 0xffffffffUL;
509 *xc = (uint32_t)carry
717 uint32_t *xc; local
    [all...]
  /frameworks/base/core/java/android/view/
ViewGroup.java 859 final float xc = scrolledXFloat - child.mLeft; local
861 ev.setLocation(xc, yc);
903 final float xc = scrolledXFloat - (float) target.mLeft; local
907 ev.setLocation(xc, yc);
926 final float xc = scrolledXFloat - (float) target.mLeft; local
928 ev.setLocation(xc, yc);
    [all...]

Completed in 1199 milliseconds