HomeSort by relevance Sort by last modified time
    Searched defs:c0 (Results 26 - 50 of 85) sorted by null

12 3 4

  /external/skia/gm/
gradients.cpp 251 SkPoint c0; local
252 c0.iset(-80, 25);
257 SkShader* s = SkGradientShader::CreateTwoPointRadial(c0, r0, c1, r1, colors,
  /external/skia/tests/
RegionTest.cpp 147 bool c0 = a.contains(b); local
149 REPORTER_ASSERT(reporter, c0 == c1);
154 c0 = a.contains(r);
156 REPORTER_ASSERT(reporter, c0 == c1);
175 bool c0 = a.intersects(b); local
177 REPORTER_ASSERT(reporter, c0 == c1);
  /frameworks/av/services/audioflinger/
AudioResamplerSinc.cpp 827 int32_t c0 = coefs[0]; local
    [all...]
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
BitmapTest.java 197 int c0 = colors[i]; local
204 // comparing the original (c0) with the returned color is tricky,
207 int a0 = Color.alpha(c0);
211 int r0 = Color.red(c0);
216 int g0 = Color.green(c0);
221 int b0 = Color.blue(c0);
228 android.util.Log.d("skia", "original " + Integer.toHexString(c0) +
  /frameworks/rs/
rsMatrix4x4.cpp 44 int c0 = (i+1) % 4; local
52 (m[c0 + 4*r0] * (m[c1 + 4*r1] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r1]))
53 - (m[c0 + 4*r1] * (m[c1 + 4*r0] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r0]))
54 + (m[c0 + 4*r2] * (m[c1 + 4*r0] * m[c2 + 4*r1] - m[c1 + 4*r1] * m[c2 + 4*r0]));
86 int c0 = (i+1) % 4; local
93 float minor = (m[c0 + 4*r0] * (m[c1 + 4*r1] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r1]))
94 - (m[c0 + 4*r1] * (m[c1 + 4*r0] * m[c2 + 4*r2] - m[c1 + 4*r2] * m[c2 + 4*r0]))
95 + (m[c0 + 4*r2] * (m[c1 + 4*r0] * m[c2 + 4*r1] - m[c1 + 4*r1] * m[c2 + 4*r0]));
  /ndk/sources/cxx-stl/llvm-libc++/src/
debug.cpp 304 __c_node* c0 = i0 != nullptr ? i0->__c_ : nullptr; local
305 if (i == nullptr && c0 != nullptr)
308 if (c != c0)
315 if (c0 != nullptr)
317 i->__c_ = c0;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMath.java 34 float c0 = line2[0]; local
42 float t4 = c0 - d0;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Kube.java 44 float c0 = -1.0f; local
52 mCubes[0] = new Cube(world, c0, c4, c0, c1, c5, c1);
53 mCubes[1] = new Cube(world, c2, c4, c0, c3, c5, c1);
54 mCubes[2] = new Cube(world, c4, c4, c0, c5, c5, c1);
56 mCubes[3] = new Cube(world, c0, c4, c2, c1, c5, c3);
60 mCubes[6] = new Cube(world, c0, c4, c4, c1, c5, c5);
64 mCubes[9] = new Cube(world, c0, c2, c0, c1, c3, c1);
65 mCubes[10] = new Cube(world, c2, c2, c0, c3, c3, c1)
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTrees.java 82 CommonTree c0, c1, c2; local
83 r0.addChild(c0=new CommonTree(new CommonToken(101)));
89 assertEquals(r0, c0.parent);
90 assertEquals(0, c0.childIndex);
104 CommonTree c0, c1, c2; local
105 r0.addChild(c0=new CommonTree(new CommonToken(101)));
114 assertEquals(root, c0.parent);
115 assertEquals(0, c0.childIndex);
116 assertEquals(root, c0.parent);
118 assertEquals(root, c0.parent)
130 CommonTree c0, c1, c2; local
254 CommonTree c0 = new CommonTree(new CommonToken(99, "b")); local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CurrencyTest.java 42 Currency c0 = Currency.getInstance("CAD"); local
46 c1 == c0);
50 c2 == c0);
54 c3 == c0);
56 c0 = Currency.getInstance("JPY");
60 c1 == c0);
64 c2 == c0);
68 c3 == c0);
  /external/eigen/Eigen/src/Eigenvalues/
SelfAdjointEigenSolver.h 501 // The characteristic equation is x^3 - c2*x^2 + c1*x - c0 = 0. The
504 Scalar c0 = m(0,0)*m(1,1)*m(2,2) + Scalar(2)*m(1,0)*m(2,0)*m(2,1) - m(0,0)*m(2,1)*m(2,1) - m(1,1)*m(2,0)*m(2,0) - m(2,2)*m(1,0)*m(1,0); local
515 Scalar half_b = Scalar(0.5)*(c0 + c2_over_3*(Scalar(2)*c2_over_3*c2_over_3 - c1));
  /external/llvm/lib/Support/
raw_ostream.cpp 243 int c0 = buf[len - 1]; local
245 isdigit(static_cast<unsigned char>(c0))) {
248 buf[len - 2] = c0;
  /external/skia/src/gpu/
GrPathUtils.cpp 400 SkVector c0 = p[0]; local
401 c0 += ab;
405 SkScalar dSqd = sublevel > kMaxSubdivs ? 0 : c0.distanceToSqd(c1);
407 SkPoint cAvg = c0;
427 SkScalar d0Sqd = c0.distanceToSqd(cAvg);
  /frameworks/base/core/tests/coretests/src/android/os/
AidlTest.java 304 char[] c0 = new char[]{'a'}; local
307 char[] cr = mRemote.charArray(c0, c1, c2);
  /frameworks/base/graphics/java/android/renderscript/
Matrix4f.java 405 int c0 = (i+1) % 4; local
412 float minor = (mMat[c0 + 4*r0] * (mMat[c1 + 4*r1] * mMat[c2 + 4*r2] -
414 - (mMat[c0 + 4*r1] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r2] -
416 + (mMat[c0 + 4*r2] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r1] -
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Matrix4f.java 405 int c0 = (i+1) % 4; local
412 float minor = (mMat[c0 + 4*r0] * (mMat[c1 + 4*r1] * mMat[c2 + 4*r2] -
414 - (mMat[c0 + 4*r1] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r2] -
416 + (mMat[c0 + 4*r2] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r1] -
  /libcore/luni/src/test/java/tests/api/java/util/
CurrencyTest.java 50 Currency c0 = Currency.getInstance("CAD"); local
54 c1 == c0);
58 c2 == c0);
62 c3 == c0);
64 c0 = Currency.getInstance("JPY");
68 c1 == c0);
72 c2 == c0);
76 c3 == c0);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
BoundedRect.java 190 float[] c0 = Arrays.copyOf(c, 2); local
191 m0.mapPoints(c0);
192 if (!CropMath.inclusiveContains(outer, c0[0], c0[1])) {
280 float[] c0 = Arrays.copyOf(c, 2); local
281 m0.mapPoints(c0);
282 if (!CropMath.inclusiveContains(outer, c0[0], c0[1])) {
  /external/chromium/base/
bind_unittest.cc 226 Callback<int(void)> c0 = Bind(&Sum, 32, 16, 8, 4, 2, 1); local
227 EXPECT_EQ(63, c0.Run());
  /external/clang/test/Sema/
designated-initializers.c 200 char c0; variable
219 .double_ptr = &d0, &c0,
221 &c0,
  /external/icu4c/test/cintltst/
bocu1tst.c 59 * C0 control codes and space are encoded with their US-ASCII bytes.
60 * "prev" is reset for C0 controls but not for space.
78 /* adjust trail byte counts for the use of some C0 control byte values */
132 * 12 commonly used C0 control codes (and space) are only used to encode
155 * The other 20 C0 controls are also encoded directly (to preserve order)
382 * ISO C0 control & space:
471 /* skip some C0 controls and make the trail byte range contiguous */
551 * Direct-encoded C0 control code or space.
552 * Reset prev for C0 control codes but not for space.
630 * Unpack a packed BOCU-1 non-C0/space byte sequence and ge
948 static const UChar c0[]={ 1, 0xe40, 0x20, 9 }; variable
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
ShaderUtils.java 153 float c0, c1, c2, c3; /* coefficients of the cubic. */ local
168 c0 = CR30 * knot[span + 0] + CR31 * knot[span + 1] + CR32 * knot[span + 2] + CR33 * knot[span + 3];
169 return ((c3 * x + c2) * x + c1) * x + c0;
  /external/opencv/cv/src/
cvpyrsegmentation.cpp 1042 float c0, c1, c2, c3, c4; local
1477 float c0 = cmp->c; local
1660 _CvRGBf c0 = cmp->c; local
    [all...]
cvsegmentation.cpp 338 #define cdiff(ofs0) (tab[c0-dptr[ofs0]+255] + \
426 int c0 = dptr[0], c1 = dptr[1], c2 = dptr[2]; local
446 int c0, c1, c2; local
451 c0 = sptr[0], c1 = sptr[1], c2 = sptr[2];
477 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 )
483 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 )
489 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 )
495 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 )
505 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 )
526 tab[s0 - c0 + 255] + tab[s1 - c1 + 255]
    [all...]
cvsubdivision2d.cpp 662 double a0, b0, c0, a1, b1, c1; local
671 icvCreateCenterNormalLine( edge0, &a0, &b0, &c0 );
674 icvIntersectLines3( &a0, &b0, &c0, &a1, &b1, &c1, &virt_point );
691 icvCreateCenterNormalLine( edge0, &a0, &b0, &c0 );
694 icvIntersectLines3( &a0, &b0, &c0, &a1, &b1, &c1, &virt_point );

Completed in 1096 milliseconds

12 3 4