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

  /frameworks/rs/driver/
rsdPath.cpp 46 float x1, xc, x2; member in struct:DrvPathStatic::__anon17367
122 s->xc = fin[2];
163 vtx[2] = s->xc;
168 vtx[6] = s->xc;
  /external/opencv/cv/src/
cvcamshift.cpp 173 double a, b, c, xc, yc; local
225 xc = cvRound( m10 * inv_m00 + windowIn.x );
260 int _xc = cvRound( xc );
cvhough.cpp 225 float xc, yc; local
302 xc = (float) col + 0.5f;
305 t = (float) fabs( cvFastArctan( yc, xc ) * d2r );
306 r = (float) sqrt( (double)xc * xc + (double)yc * yc );
371 xc = (float) x[index] + 0.5f;
374 t = (float) fabs( cvFastArctan( yc, xc ) * d2r );
375 r = (float) sqrt( (double)xc * xc + (double)yc * yc ) * isrho;
    [all...]
  /external/skia/third_party/glu/libtess/
render.c 378 GLdouble dot, xc, yc, zc, xp, yp, zp, n[3]; local
399 xc = vc->coords[0] - v0->coords[0];
403 xp = xc; yp = yc; zp = zc;
404 xc = vc->coords[0] - v0->coords[0];
410 n[1] = zp*xc - xp*zc;
411 n[2] = xp*yc - yp*xc;
  /external/webkit/Source/WebCore/platform/graphics/qt/
PathQt.cpp 262 qreal xc = p.x(); local
281 double xs = xc - radius;
314 m_path.lineTo(xc, yc);
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 330 const GLint xc = (mWidth - mAndroid[0].w) / 2; local
332 const Rect updateRect(xc, yc, xc + mAndroid[0].w, yc + mAndroid[0].h);
347 GLint x = xc - offset;
360 glDrawTexiOES(xc, yc, 0, mAndroid[0].w, mAndroid[0].h);
486 const int xc = (mWidth - animation.width) / 2; local
492 clearReg.subtractSelf(Rect(xc, yc, xc+animation.width, yc+animation.height));
534 glDrawTexiOES(xc, yc, 0, animation.width, animation.height);
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 434 final float xc = mXOrigin; local
447 final float x = xc + particleSystem.getPosX(i) * xs;
  /external/mksh/src/
main.c 389 volatile uint8_t xc; local
408 xc = 0;
409 --xc;
413 (xa != 0) || (xua != 0) || (xc != 255))
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
HandshakeCompletedEventTest.java 133 X509Certificate xc = X509Certificate.getInstance(bis); local
134 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 610 int xc = x1 - xs; local
623 r = ADJUST_COLOR_ITERATOR(r, c->shade.drdx, xc);
624 g = ADJUST_COLOR_ITERATOR(g, c->shade.dgdx, xc);
625 b = ADJUST_COLOR_ITERATOR(b, c->shade.dbdx, xc);
626 a = ADJUST_COLOR_ITERATOR(a, c->shade.dadx, xc);
663 while (xc--) {
1874 const uint32_t xc = x1 - xs; local
1965 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)
934 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/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 1144 int x2, y2, x, y, xc; local
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
dtoa.cpp 340 uint32_t* xc; local
360 for (xc = c.words(), xa = xc + wc; xc < xa; xc++)
361 *xc = 0;
371 xc = xc0;
374 z = *x++ * (unsigned long long)y + *xc + carry;
376 *xc++ = (uint32_t)z & 0xffffffffUL;
378 *xc = (uint32_t)carry
555 uint32_t* xc; local
    [all...]
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 805 ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0; variable
839 xc = xc0;
842 z = *x++ * (ULLong)y + *xc + carry;
844 *xc++ = z & FFFFFFFF;
847 *xc = carry;
855 xc = xc0;
858 z = (*x & 0xffff) * y + (*xc & 0xffff) + carry;
860 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
862 Storeinc(xc, z2, z);
865 *xc = carry
1068 ULong *xa, *xae, *xb, *xbe, *xc; variable
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 3525 milliseconds