HomeSort by relevance Sort by last modified time
    Searched defs:c2 (Results 276 - 300 of 1325) sorted by null

<<11121314151617181920>>

  /external/clang/test/CodeGenCXX/
anonymous-union-member-initializer.cpp 6 char c2; member in struct:rdar8818236::S
global-init.cpp 178 const C c2 = static_cast<const C&>(C()); member in namespace:test7
microsoft-abi-virtual-inheritance.cpp 273 int c1, c2, c3; member in struct:diamond::C
  /external/clang/test/Modules/
submodules-merge-defs.cpp 39 C2 pre_c2; // expected-error +{{must be imported}}
94 C2 c2; variable
  /external/clang/test/Sema/
attr-aligned.c 36 char c2[__alignof__(c.member) == 4 ?: -1] = {0}; variable
string-init.c 22 char16_t c2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}} local
  /external/clang/test/SemaCXX/
string-init.cpp 17 char16_t c2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}} local
  /external/clang/test/SemaTemplate/
instantiate-member-class.cpp 38 X<float>::C *c2; variable
44 c1 = c2; // expected-error{{assigning to 'X<int>::C *' from incompatible type 'X<float>::C *'}}
  /external/eigen/bench/
eig33.cpp 55 // 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/
block.cpp 15 block_real_only(const MatrixType &m1, Index r1, Index r2, Index c1, Index c2, const Scalar& s1) {
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/guava/guava/src/com/google/common/escape/
UnicodeEscaper.java 280 char c2 = seq.charAt(index); local
281 if (Character.isLowSurrogate(c2)) {
282 return Character.toCodePoint(c1, c2);
285 "Expected low surrogate but got char '" + c2 +
286 "' with value " + (int) c2 + " at index " + index +
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
BMPSet.java 141 char c, c2; local
158 c >= 0xdc00 || (i + 1) == limit || (c2 = s.charAt(i + 1)) < 0xdc00 || c2 >= 0xe000) {
175 int supplementary = Character.toCodePoint(c, c2);
197 c >= 0xdc00 || (i + 1) == limit || (c2 = s.charAt(i + 1)) < 0xdc00 || c2 >= 0xe000) {
214 int supplementary = Character.toCodePoint(c, c2);
239 char c, c2; local
254 c < 0xdc00 || 0 == limit || (c2 = s.charAt(limit - 1)) < 0xd800 || c2 >= 0xdc00)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
AsciiUtil.java 25 char c2 = s2.charAt(i); local
26 if (c1 != c2 && toLower(c1) != toLower(c2)) {
  /external/icu/icu4c/source/common/
ubidi_props.c 164 UChar32 c2; local
172 c2=UBIDI_GET_MIRROR_CODE_POINT(m);
173 if(c==c2) {
176 } else if(c<c2) {
ucasemap.cpp 220 UChar32 c, c2 = 0; local
241 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0x7f : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0x7f)) {
243 dest[destIndex++]=(uint8_t)c2;
428 UChar32 c, c2; local
443 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0x7f : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0x7f)) {
445 dest[destIndex++]=(uint8_t)c2;
ucmndata.c 106 int32_t c2=(uint8_t)*s2++; local
107 cmp=c1-c2;
uinvchar.c 453 UChar32 c1, c2; local
477 c2=*localString++;
478 if(!UCHAR_IS_INVARIANT(c2)) {
479 c2=-2;
482 if((c1-=c2)!=0) {
498 UChar32 c1, c2; local
524 c2=*localString++;
525 if(!UCHAR_IS_INVARIANT(c2)) {
526 c2=-2;
529 if((c1-=c2)!=0)
542 int32_t c1, c2; local
    [all...]
unormcmp.cpp 62 * get one code unit c2 from s2 (-1 if end of source)
67 * if(c1==c2) {
71 * // c1!=c2
72 * try to decompose/case-fold c1/c2, and continue if one does;
74 * // still c1!=c2 and neither decomposes/case-folds, return result
75 * return c1-c2;
168 UChar32 c1, c2, cp1, cp2; local
209 c1=c2=-1;
241 if(c2<0) {
244 if(s2==limit2 || ((c2=*s2)==0 && (limit2==NULL || (options&_STRNCMP_STYLE))))
    [all...]
  /external/icu/icu4c/source/test/intltest/
aliastst.cpp 67 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. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName()))
    [all...]
  /external/icu/icu4c/source/tools/genrb/
read.c 323 UChar32 c, c2; local
357 c2 = ucbuf_getc(buf, status); /* "/ * c" */
358 if(c2 == ASTERISK){ /* "/ * *" */
362 ucbuf_ungetc(c2, buf); /* c2 is the non-asterisk following "/ *". Include c2 back in buffer. */
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
AsciiUtil.java 21 char c2 = s2.charAt(i); local
22 if (c1 != c2 && toLower(c1) != toLower(c2)) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
BMPSet.java 139 char c, c2; local
156 c >= 0xdc00 || (i + 1) == limit || (c2 = s.charAt(i + 1)) < 0xdc00 || c2 >= 0xe000) {
173 int supplementary = Character.toCodePoint(c, c2);
195 c >= 0xdc00 || (i + 1) == limit || (c2 = s.charAt(i + 1)) < 0xdc00 || c2 >= 0xe000) {
212 int supplementary = Character.toCodePoint(c, c2);
237 char c, c2; local
252 c < 0xdc00 || 0 == limit || (c2 = s.charAt(limit - 1)) < 0xd800 || c2 >= 0xdc00)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
AsciiUtil.java 21 char c2 = s2.charAt(i); local
22 if (c1 != c2 && toLower(c1) != toLower(c2)) {
  /external/jemalloc/include/jemalloc/internal/
hash.h 117 const uint32_t c2 = 0x1b873593; local
129 k1 *= c2;
147 k1 *= c2; h1 ^= k1;
172 const uint32_t c2 = 0xab0e9789; local
187 k1 *= c1; k1 = hash_rotl_32(k1, 15); k1 *= c2; h1 ^= k1;
192 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
233 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
239 k1 *= c1; k1 = hash_rotl_32(k1, 15); k1 *= c2; h1 ^= k1;
272 const uint64_t c2 = KQU(0x4cf5ad432745937f); local
283 k1 *= c1; k1 = hash_rotl_64(k1, 31); k1 *= c2; h1 ^= k1
    [all...]
  /external/libchrome/base/
callback_unittest.cc 87 Callback<void(int,int)> c2; local
95 EXPECT_TRUE(c2.is_null());

Completed in 2614 milliseconds

<<11121314151617181920>>