Searched defs:c2 (Results 76 - 100 of 462) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/icu/source/common/
H A Dubidi_props.c152 UChar32 c2; local
160 c2=UBIDI_GET_MIRROR_CODE_POINT(m);
161 if(c==c2) {
164 } else if(c<c2) {
/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/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/openssl/openssl/crypto/bn/asm/
H A Dx86_64-gcc.c271 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
272 /* mul_add_c2(a,b,c0,c1,c2) -- c+=2*a*b for three word number c=(c2,c1,c0) */
273 /* sqr_add_c(a,i,c0,c1,c2) -- c+=a[i]^2 for three word number c=(c2,c1,c0) */
274 /* sqr_add_c2(a,i,c0,c1,c2) -- c+=2*a[i]*a[j] for three word number c=(c2,c1,c0) */
278 #define mul_add_c(a,b,c0,c1,c2) { \
283 c1 += t2; c2
356 BN_ULONG c1,c2,c3; local
460 BN_ULONG c1,c2,c3; local
500 BN_ULONG c1,c2,c3; local
576 BN_ULONG c1,c2,c3; local
[all...]
/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/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);
254 bool SkIntersections::cubicCheckCoincidence(const SkDCubic& c1, const SkDCubic& c2) {
265 SkDPoint testPt2 = c2.ptAtT(testT2);
401 static bool only_end_pts_in_common(const SkDCubic& c1, const SkDCubic& c2) {
426 double test = (c2[n].fY - origY) * adj - (c2[n].fX - origX) * opp;
439 int SkIntersections::intersect(const SkDCubic& c1, const SkDCubic& c2) {
[all...]
/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/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
/external/clang/test/Sema/
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.cpp38 Index c2 = internal::random<Index>(c1,cols-1); local
50 m1.col(c1) += s1 * m1_copy.col(c2);
51 VERIFY_IS_APPROX(m1.col(c1), m1_copy.col(c1) + s1 * m1_copy.col(c2));
52 m1.col(c1).col(0) += s1 * m1_copy.col(c2);
53 VERIFY_IS_APPROX(m1.col(c1), m1_copy.col(c1) + Scalar(2) * s1 * m1_copy.col(c2));
64 m1.block(r1,c1,r2-r1+1,c2-c1+1) = s1 * m2.block(0, 0, r2-r1+1,c2-c1+1);
65 m1.block(r1,c1,r2-r1+1,c2-c1+1)(r2-r1,c2-c1) = m2.block(0, 0, r2-r1+1,c2
194 Index c2 = internal::random<Index>(c1,cols-1); local
[all...]
H A Dproduct.h58 c2 = internal::random<Index>(0, cols-1); local
141 Scalar x = square2.row(c) * square2.col(c2);
142 VERIFY_IS_APPROX(x, square2.row(c).transpose().cwiseProduct(square2.col(c2)).sum());
/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/icu4c/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/icu4c/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/libnfc-nxp/src/
H A DphFriNfc_NdefReg.c51 int8_t c1, c2; local
59 c2 = *s2;
61 if (c2 >=97)
62 c2 = (c2 - 32);
65 while ( (c1 == c2) && (c1 != '\0') && (c2 != '\0') && (count > 0) );
67 if ( (count == 0) || (c1 == c2) )
70 else if ( (c1 > c2) )
/external/libvpx/libvpx/vp8/common/
H A Didctllm.c145 int a2, b2, c2, d2; local
176 c2 = a1 - b1;
181 op[2] = (c2 + 3) >> 3;
/external/llvm/unittests/IR/
H A DMetadataTest.cpp93 Value *const c2 = n2; local
97 MDNode *n6 = MDNode::getIfExists(Context, c2);
/external/lzma/C/
H A DCpuArch.c57 UInt32 a2, b2, c2, d2; local
65 __asm mov c2, ECX; local
70 *c = c2;
/external/opencv/otherlibs/highgui/
H A Dgrfmt_base.cpp177 int c2 = tolower(descr[i+1]); local
179 if( c1 != c2 )

Completed in 1139 milliseconds

1234567891011>>