/external/clang/test/CodeGenCXX/ |
microsoft-templ-uuidof.cpp | 23 const _GUID &xc = __uuidof(X<C>); variable 24 // CHECK-DAG: @"\01?xc@@3ABU_GUID@@B" = {{.*}} @_GUID_cccccccc_cccc_cccc_cccc_cccccccccccc
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
sum.c | 42 ULong carry, *xc, *xa, *xb, *xe, y; local 57 xc = c->x; 58 xe = xc + b->wds; 65 Storeinc(xc, z, y); 67 while(xc < xe); 69 while(xc < xe) { 74 Storeinc(xc, z, y); 80 *xc++ = y & 0xffff; 82 while(xc < xe); 84 while(xc < xe) [all...] |
misc.c | 283 ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0; local 319 xc = xc0; 322 z = *x++ * (ULLong)y + *xc + carry; 324 *xc++ = z & 0xffffffffUL; 327 *xc = carry; 335 xc = xc0; 338 z = (*x & 0xffff) * y + (*xc & 0xffff) + carry; 340 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry; 342 Storeinc(xc, z2, z); 345 *xc = carry 557 ULong *xa, *xae, *xb, *xbe, *xc; local [all...] |
/external/testng/src/test/java/test/ |
SimpleBaseTest.java | 62 XmlClass xc = new XmlClass(clazz.getName(), index++, true /* load classes */); local 63 result.getXmlClasses().add(xc); 65 xc = new XmlClass(c.getName(), index++, true /* load classes */); 66 result.getXmlClasses().add(xc); 77 XmlClass xc = new XmlClass(c, index++, true /* load classes */); local 78 result.getXmlClasses().add(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/opencv3/modules/imgproc/test/ |
test_moments.cpp | 211 double xc = 0., yc = 0.; local 257 xc = m.m10/m.m00, yc = m.m01/m.m00; 267 double val, x1 = x - xc;
|
/external/opencv3/modules/video/src/ |
camshift.cpp | 150 int xc = cvRound( m10 * inv_m00 + window.x ); local 178 int _xc = cvRound( xc );
|
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
PKIX.java | 131 List<X509Certificate> xc = new ArrayList<> local 133 Collections.reverse(xc); 134 certs = xc; 262 X509Certificate xc = local 264 return xc.getSubjectX500Principal();
|
/external/clang/test/SemaCXX/ |
cxx0x-initializer-stdinitializerlist.cpp | 190 XCtorInit xc = { xi, xi }; local
|
/external/libgdx/gdx/src/com/badlogic/gdx/math/ |
DelaunayTriangulator.java | 227 float xc, yc;
local 235 xc = (x2 + x1) / 2f;
236 yc = m2 * (xc - mx2) + my2;
242 xc = (x3 + x2) / 2f;
243 yc = m1 * (xc - mx1) + my1;
248 xc = (m1 * mx1 - m2 * mx2 + my2 - my1) / (m1 - m2);
249 yc = m1 * (xc - mx1) + my1;
253 float dx = x2 - xc;
257 dx = xp - xc;
261 return xp > xc && dx > rsqr ? COMPLETE : INCOMPLETE; [all...] |
/developers/build/prebuilts/gradle/AccelerometerPlay/app/src/main/java/com/example/android/accelerometerplay/ |
AccelerometerPlayActivity.java | 404 final float xc = mXOrigin; local 415 final float x = xc + particleSystem.getPosX(i) * xs;
|
/developers/samples/android/sensors/AccelerometerPlay/app/src/main/java/com/example/android/accelerometerplay/ |
AccelerometerPlayActivity.java | 404 final float xc = mXOrigin; local 415 final float x = xc + particleSystem.getPosX(i) * xs;
|
/development/samples/browseable/AccelerometerPlay/src/com.example.android.accelerometerplay/ |
AccelerometerPlayActivity.java | 404 final float xc = mXOrigin; local 415 final float x = xc + particleSystem.getPosX(i) * xs;
|
/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/ImageMagick/MagickCore/ |
distort.c | 2211 { double xc,yc; local [all...] |
/external/opencv3/modules/imgproc/src/ |
hough.cpp | 214 float xc, yc; local 285 xc = (float) col + 0.5f; 288 t = (float) fabs( cvFastArctan( yc, xc ) * d2r ); 289 r = (float) std::sqrt( (double)xc * xc + (double)yc * yc ); 353 xc = (float) x[index] + 0.5f; 356 t = (float) fabs( cvFastArctan( yc, xc ) * d2r ); 357 r = (float) std::sqrt( (double)xc * xc + (double)yc * yc ) * isrho; [all...] |
lsd.cpp | 792 double xc = double(reg[0].x); local 801 if (dist(xc, yc, reg[i].x, reg[i].y) < rec.width) 836 double xc = double(reg[0].x); local 838 double radSq1 = distSq(xc, yc, rec.x1, rec.y1); 839 double radSq2 = distSq(xc, yc, rec.x2, rec.y2); 848 if(distSq(xc, yc, double(reg[i].x), double(reg[i].y)) > radSq) [all...] |
/frameworks/base/cmds/bootanimation/ |
BootAnimation.cpp | 358 const GLint xc = (mWidth - mAndroid[0].w) / 2; local 360 const Rect updateRect(xc, yc, xc + mAndroid[0].w, yc + mAndroid[0].h); 375 GLint x = xc - offset; 388 glDrawTexiOES(xc, yc, 0, mAndroid[0].w, mAndroid[0].h); 819 const int xc = animationX + frame.trimX; local 822 clearReg.subtractSelf(Rect(xc, yc, xc+frame.trimWidth, yc+frame.trimHeight)); 836 glDrawTexiOES(xc, mHeight - (yc + frame.trimHeight), [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
HandshakeCompletedEventTest.java | 131 X509Certificate xc = X509Certificate.getInstance(bis); local 132 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...] |
/toolchain/binutils/binutils-2.25/bfd/ |
elfcode.h | 1236 asection *xc = bfd_get_section_by_name (abfd, "COMMON"); local [all...] |
/external/clang/test/CXX/drs/ |
dr3xx.cpp | 259 X<C> xc; local [all...] |
/external/opencv/otherlibs/highgui/ |
grfmt_jpeg.cpp | 1144 int x2, y2, x, y, xc; local [all...] |
/external/valgrind/none/tests/ppc32/ |
test_isa_2_06_part2.c | 789 unsigned long long xc[] = { 0xffffffff01020304ULL, 0x128934bd00000000ULL}; local 793 memcpy(&vec_inC, xc, 16); 798 printf("xxsel %016llx,%016llx,%016llx => %016llx\n", xa[0], xb[0], xc[0], *dst); 800 printf("xxsel %016llx,%016llx,%016llx => %016llx\n", xa[1], xb[1], xc[1], *dst); [all...] |