Searched defs:c0 (Results 1 - 25 of 38) sorted by relevance

12

/external/valgrind/main/exp-ptrcheck/tests/
H A Djustify.c14 char *c0, *c1; local
16 c0 = malloc(10000);
18 assert(c0 && c1);
20 c = c0[15000];
H A Dzero.c8 char c, *c0 = malloc(0), *c1; local
10 c = *c0; // bad
12 c0 = realloc(c0, 10);
13 assert(c0);
15 c = *c0; // ok
17 c1 = c0;
18 c0 = realloc(c0, 0);
19 assert(!c0);
[all...]
H A Dunaligned.c10 char c0[8], c1[8], c2[8], c3[8], c4[8]; local
13 char** p0 = (char**)&c0[0]; char** p1 = (char**)&c1[1];
H A Dpartial.c9 int* x6 = malloc(6); char c, *c0 = malloc(0); local
44 c = * c0;
/external/skia/tests/
H A DColorTest.cpp8 SkColor c0 = SkColorSetARGB(a, x, x, x); local
9 SkPMColor p0 = SkPreMultiplyColor(c0);
14 // we can't promise that c0 == c1, since c0 -> p0 is a many to one
H A DClipCubicTest.cpp18 static bool CurvesAreEqual(const SkPoint c0[4], argument
22 if (SkScalarAbs(c0[i].fX - c1[i].fX) > SkFloatToScalar(tol) ||
23 SkScalarAbs(c0[i].fY - c1[i].fY) > SkFloatToScalar(tol)
25 PrintCurve("c0", c0);
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnClassifier.cpp39 LoopBlinnClassifier::Result LoopBlinnClassifier::classify(const FloatPoint& c0, argument
48 FloatPoint3D b0(c0.x(), c0.y(), 1.0f);
/external/clang/test/CXX/expr/
H A Dp9.cpp16 signed char c0; variable
17 __typeof__(c0 + c0) c1;
/external/chromium/base/
H A Dcallback_unittest.cc78 Callback<void(void)> c0; local
86 EXPECT_TRUE(c0.is_null());
H A Dbind_unittest.cc226 Callback<int(void)> c0 = Bind(&Sum, 32, 16, 8, 4, 2, 1); local
227 EXPECT_EQ(63, c0.Run());
/external/clang/test/SemaCXX/
H A Dattr-deprecated.cpp216 c0 enumerator in enum:test6::C::Enum
221 x = C<int>::c0; // expected-warning {{'Enum' is deprecated}}
H A Dscope-check.cpp68 C c0; local
85 C c0; local
105 C c0; local
/external/llvm/unittests/ADT/
H A DSmallVectorTest.cpp76 friend bool operator==(const Constructable & c0, const Constructable & c1) { argument
77 return c0.getValue() == c1.getValue();
81 operator!=(const Constructable & c0, const Constructable & c1) { argument
82 return c0.getValue() != c1.getValue();
/external/skia/samplecode/
H A DSampleGradients.cpp6 static SkShader* setgrad(const SkRect& r, SkColor c0, SkColor c1) { argument
7 SkColor colors[] = { c0, c1 };
/external/skia/src/core/
H A DSkQuadClipper.cpp41 static bool chopMonoQuadAt(SkScalar c0, SkScalar c1, SkScalar c2, argument
47 SkScalar A = c0 - c1 - c1 + c2;
48 SkScalar B = 2*(c1 - c0);
49 SkScalar C = c0 - target;
H A DSkEdgeClipper.cpp55 static bool chopMonoQuadAt(SkScalar c0, SkScalar c1, SkScalar c2, argument
61 SkScalar A = c0 - c1 - c1 + c2;
62 SkScalar B = 2*(c1 - c0);
63 SkScalar C = c0 - target;
233 static bool chopMonoCubicAt(SkScalar c0, SkScalar c1, SkScalar c2, SkScalar c3, argument
235 // SkASSERT(c0 <= c1 && c1 <= c2 && c2 <= c3);
236 SkASSERT(c0 < target && target < c3);
238 SkScalar D = c0 - target;
239 SkScalar A = c3 + 3*(c1 - c2) - c0;
240 SkScalar B = 3*(c2 - c1 - c1 + c0);
[all...]
/external/mesa3d/test/
H A Dmain.cpp274 clock_t c0 = clock(); local
418 float elapsed = (float)(clock() - c0) / CLOCKS_PER_SEC;
/external/openssl/crypto/bn/
H A Dbn_asm.c436 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
437 /* mul_add_c2(a,b,c0,c1,c2) -- c+=2*a*b for three word number c=(c2,c1,c0) */
438 /* sqr_add_c(a,i,c0,c1,c2) -- c+=a[i]^2 for three word number c=(c2,c1,c0) */
439 /* sqr_add_c2(a,i,c0,c1,c2) -- c+=2*a[i]*a[j] for three word number c=(c2,c1,c0) */
442 #define mul_add_c(a,b,c0,c1,c2) \
446 c0
849 BN_ULONG c0,c1,ml,*tp,n0; local
988 BN_ULONG c0,c1,*tp,n0=*n0p; local
[all...]
/external/clang/test/Sema/
H A Ddesignated-initializers.c200 char c0; variable
219 .double_ptr = &d0, &c0,
221 &c0,
/external/icu4c/test/cintltst/
H A Dbocu1tst.c947 static const UChar c0[]={ 1, 0xe40, 0x20, 9 }; variable
967 { c0, LENGTHOF(c0) }
/external/llvm/lib/Support/
H A Draw_ostream.cpp242 int c0 = buf[len - 1]; local
243 if (isdigit(c1) && isdigit(c0)) {
246 buf[len - 2] = c0;
/external/opencv/cv/src/
H A Dcvgeometry.cpp146 icvIntersectLines3( double *a0, double *b0, double *c0, argument
154 point->x = (float) ((b0[0] * c1[0] - b1[0] * c0[0]) * det);
155 point->y = (float) ((a1[0] * c0[0] - a0[0] * c1[0]) * det);
H A Dcvsegmentation.cpp338 #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
[all...]
H A Dcvsubdivision2d.cpp662 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 );
/external/skia/gm/
H A Dgmmain.cpp96 static inline SkPMColor compute_diff_pmcolor(SkPMColor c0, SkPMColor c1) { argument
97 int dr = SkGetPackedR32(c0) - SkGetPackedR32(c1);
98 int dg = SkGetPackedG32(c0) - SkGetPackedG32(c1);
99 int db = SkGetPackedB32(c0) - SkGetPackedB32(c1);
111 SkPMColor c0 = *base.getAddr32(x, y); local
114 if (c0 != c1) {
115 d = compute_diff_pmcolor(c0, c1);
149 SkPMColor c0 = *base.getAddr32(x, y); local
151 if (c0 != c1) {
154 renderModeDescriptor, name.c_str(), x, y, c0, c
[all...]

Completed in 7627 milliseconds

12