Searched defs:c2 (Results 151 - 175 of 621) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/icu/source/test/intltest/
H A Daliastst.cpp67 Calendar* c2 = Calendar::createInstance(newLoc, status); local
71 const char* l2 = c2->getLocaleID(ULOC_VALID_LOCALE, status);
78 if(!(c1==c2)){
79 errln("CalendarTest: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName()));
83 delete c2;
112 errln("TestDateFormat: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName()));
134 Collator* c2 = Collator::createInstance(newLoc, status); local
137 Locale l2 = c2->getLocale(ULOC_VALID_LOCALE, status);
145 if(!(c1==c2)){
146 errln("CollationTest: c1!=c2
[all...]
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
H A Drune.c68 int c, c1, c2, c3; local
117 c2 = *(uchar*)(str+2) ^ Tx;
118 if(c2 & Testx)
121 l = ((((c << Bitx) | c1) << Bitx) | c2) & Rune3;
139 l = ((((((c << Bitx) | c1) << Bitx) | c2) << Bitx) | c3) & Rune4;
169 int c, c1, c2, c3; local
203 c2 = *(uchar*)(str+2) ^ Tx;
204 if(c2 & Testx)
207 l = ((((c << Bitx) | c1) << Bitx) | c2) & Rune3;
222 l = ((((((c << Bitx) | c1) << Bitx) | c2) << Bit
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Didctllm.c145 int a2, b2, c2, d2; local
176 c2 = a1 - b1;
181 op[2] = (c2 + 3) >> 3;
/external/chromium_org/third_party/lzma_sdk/
H A DCpuArch.c58 UInt32 a2, b2, c2, d2; local
66 __asm mov c2, ECX; local
71 *c = c2;
/external/chromium_org/third_party/re2/util/
H A Drune.cc51 int c, c1, c2, c3; local
85 c2 = *(unsigned char*)(str+2) ^ Tx;
86 if(c2 & Testx)
89 l = ((((c << Bitx) | c1) << Bitx) | c2) & Rune3;
104 l = ((((((c << Bitx) | c1) << Bitx) | c2) << Bitx) | c3) & Rune4;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicConvexHull.cpp19 CubicIntersections(const Cubic& c1, const Cubic& c2, Intersections& i) argument
21 , cubic2(c2)
162 bool intersect(const Cubic& c1, const Cubic& c2, Intersections& i) { argument
163 CubicIntersections c(c1, c2, i);
H A DCubicIntersection.cpp82 Cubic c1, c2; local
84 sub_divide(cubic2, t2s, t2e, c2);
86 // OPTIMIZE: if c1 == c2, call once (happens when detecting self-intersection)
89 cubic_to_quadratics(c2, calcPrecision(c2) * precisionScale, ts2);
408 bool intersect3(const Cubic& c1, const Cubic& c2, Intersections& i) {
409 bool result = intersect3(c1, 0, 1, c2, 0, 1, 1, i);
413 c2Bounds.setBounds(c2);
414 result |= intersectEnd(c1, false, c2, c2Bounds, i);
415 result |= intersectEnd(c1, true, c2, c2Bound
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDCubicIntersection.cpp80 SkDCubic c2 = cubic2.subDivide(t2s, t2e); local
82 // OPTIMIZE: if c1 == c2, call once (happens when detecting self-intersection)
85 c2.toQuadraticTs(c2.calcPrecision() * precisionScale, &ts2);
257 bool SkIntersections::cubicCheckCoincidence(const SkDCubic& c1, const SkDCubic& c2) {
268 SkDPoint testPt2 = c2.ptAtT(testT2);
432 static bool only_end_pts_in_common(const SkDCubic& c1, const SkDCubic& c2) {
460 double test = (c2[n].fY - origY) * adj - (c2[n].fX - origX) * opp;
473 int SkIntersections::intersect(const SkDCubic& c1, const SkDCubic& c2) {
[all...]
/external/chromium_org/third_party/skia/tests/
H A DGpuColorFilterTest.cpp62 const SkColor c2 = SkColorSetARGB(60, 60, 60, 60); local
64 const GrColor gr_c2 = SkColor2GrColor(c2);
/external/chromium_org/third_party/smhasher/src/
H A DMurmurHash3.cpp103 const uint32_t c2 = 0x1b873593; local
116 k1 *= c2;
135 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1;
162 const uint32_t c2 = 0xab0e9789; local
178 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1;
182 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
222 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
228 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1;
265 const uint64_t c2 = BIG_CONSTANT(0x4cf5ad432745937f); local
277 k1 *= c1; k1 = ROTL64(k1,31); k1 *= c2; h
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dstringutils.cc55 wchar_t c1, c2; local
62 c2 = transformation(*s2);
63 if (c1 != c2) return (c1 < c2) ? -1 : 1;
/external/clang/test/CXX/special/class.ctor/
H A Dp6-0x.cpp30 constexpr Constexpr2 c2 = Constexpr2(); // ok variable
/external/clang/test/CodeGenCXX/
H A Danonymous-union-member-initializer.cpp6 char c2; member in struct:rdar8818236::S
H A Dglobal-init.cpp175 const C c2 = static_cast<const C&>(C()); member in namespace:test7
H A Dmicrosoft-abi-virtual-inheritance.cpp278 int c1, c2, c3; member in struct:diamond::C
/external/clang/test/Lexer/
H A Dms-extensions.c21 __complex double c2 = 1.0i; variable
/external/clang/test/Sema/
H A Dattr-aligned.c36 char c2[__alignof__(c.member) == 4 ?: -1] = {0}; variable
H A Dstring-init.c22 char16_t c2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}} local
/external/clang/test/SemaCXX/
H A Dstring-init.cpp17 char16_t c2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}} local
/external/clang/test/SemaTemplate/
H A Dinstantiate-member-class.cpp38 X<float>::C *c2; variable
44 c1 = c2; // expected-error{{assigning to 'X<int>::C *' from incompatible type 'X<float>::C *'}}
/external/eigen/bench/
H A Deig33.cpp55 // The characteristic equation is x^3 - c2*x^2 + c1*x - c0 = 0. The
60 Scalar c2 = m(0,0) + m(1,1) + m(2,2); local
64 Scalar c2_over_3 = c2*s_inv3;
65 Scalar a_over_3 = (c1 - c2*c2_over_3)*s_inv3;
/external/eigen/test/
H A Dblock.cpp15 block_real_only(const MatrixType &m1, Index r1, Index r2, Index c1, Index c2, const Scalar& s1) { argument
20 VERIFY_IS_APPROX(m1.block(r1,c1,r2-r1+1,c2-c1+1).cwiseMin(s1), m1.cwiseMin(s1).block(r1,c1,r2-r1+1,c2-c1+1));
21 VERIFY_IS_APPROX(m1.block(r1,c1,r2-r1+1,c2-c1+1).cwiseMax(s1), m1.cwiseMax(s1).block(r1,c1,r2-r1+1,c2-c1+1));
58 Index c2 = internal::random<Index>(c1,cols-1); local
72 m1.col(c1) += s1 * m1_copy.col(c2);
73 VERIFY_IS_APPROX(m1.col(c1), m1_copy.col(c1) + s1 * m1_copy.col(c2));
74 m1.col(c1).col(0) += s1 * m1_copy.col(c2);
75 VERIFY_IS_APPROX(m1.col(c1), m1_copy.col(c1) + Scalar(2) * s1 * m1_copy.col(c2));
223 Index c2 = internal::random<Index>(c1,cols-1); local
[all...]
/external/eigen/test/eigen2/
H A Deigen2_submatrices.cpp70 int c2 = ei_random<int>(c1,cols-1); local
77 m1.col(c1) += s1 * m1.col(c2);
87 m1.block(r1,c1,r2-r1+1,c2-c1+1) = s1 * m2.block(0, 0, r2-r1+1,c2-c1+1);
88 m1.block(r1,c1,r2-r1+1,c2-c1+1)(r2-r1,c2-c1) = m2.block(0, 0, r2-r1+1,c2-c1+1)(0,0);
134 VERIFY(ei_real(ones.col(c1).eigen2_dot(ones.col(c2))) == RealScalar(rows));
/external/icu/icu4c/source/common/
H A Dcstring.c245 unsigned char c1, c2; local
249 c2=(unsigned char)*str2;
251 if(c2==0) {
256 } else if(c2==0) {
260 rc=(int)(unsigned char)uprv_tolower(c1)-(int)(unsigned char)uprv_tolower(c2);
284 unsigned char c1, c2; local
288 c2=(unsigned char)*str2;
290 if(c2==0) {
295 } else if(c2==0) {
299 rc=(int)(unsigned char)uprv_tolower(c1)-(int)(unsigned char)uprv_tolower(c2);
[all...]
/external/icu/icu4c/source/test/intltest/
H A Daliastst.cpp67 Calendar* c2 = Calendar::createInstance(newLoc, status); local
71 const char* l2 = c2->getLocaleID(ULOC_VALID_LOCALE, status);
78 if(!(c1==c2)){
79 errln("CalendarTest: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName()));
83 delete c2;
112 errln("TestDateFormat: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName()));
134 Collator* c2 = Collator::createInstance(newLoc, status); local
137 Locale l2 = c2->getLocale(ULOC_VALID_LOCALE, status);
145 if(!(c1==c2)){
146 errln("CollationTest: c1!=c2
[all...]

Completed in 714 milliseconds

1234567891011>>