HomeSort by relevance Sort by last modified time
    Searched defs:c2 (Results 351 - 375 of 1594) sorted by null

<<11121314151617181920>>

  /external/clang/test/Sema/
bitfield-layout_1.c 135 char c2; member in struct:__anon15549
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 40 X<float>::C *c2; variable
46 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));
244 Index c2 = internal::random<Index>(c1,cols-1); local
    [all...]
  /external/eigen/unsupported/Eigen/src/EulerAngles/
EulerSystem.h 190 Scalar c2 = Vector2(mat(I,I), mat(I,J)).norm(); local
198 res[1] = atan2(-mat(I,K), -c2);
201 res[1] = atan2(-mat(I,K), c2);
239 // c2 s1.s2 c1.s2 1 0 0
241 // -s2 s1.c2 c1.c2 0 -s3 c3
  /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 143 char c, c2; local
160 c >= 0xdc00 || (i + 1) == limit || (c2 = s.charAt(i + 1)) < 0xdc00 || c2 >= 0xe000) {
177 int supplementary = Character.toCodePoint(c, c2);
199 c >= 0xdc00 || (i + 1) == limit || (c2 = s.charAt(i + 1)) < 0xdc00 || c2 >= 0xe000) {
216 int supplementary = Character.toCodePoint(c, c2);
241 char c, c2; local
256 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 29 char c2 = s2.charAt(i); local
30 if (c1 != c2 && toLower(c1) != toLower(c2)) {
  /external/icu/icu4c/source/common/
ubidi_props.c 166 UChar32 c2; local
174 c2=UBIDI_GET_MIRROR_CODE_POINT(m);
175 if(c==c2) {
178 } else if(c<c2) {
ucmndata.c 108 int32_t c2=(uint8_t)*s2++; local
109 cmp=c1-c2;
uinvchar.c 455 UChar32 c1, c2; local
479 c2=*localString++;
480 if(!UCHAR_IS_INVARIANT(c2)) {
481 c2=-2;
484 if((c1-=c2)!=0) {
500 UChar32 c1, c2; local
526 c2=*localString++;
527 if(!UCHAR_IS_INVARIANT(c2)) {
528 c2=-2;
531 if((c1-=c2)!=0)
544 int32_t c1, c2; local
    [all...]
unormcmp.cpp 64 * get one code unit c2 from s2 (-1 if end of source)
69 * if(c1==c2) {
73 * // c1!=c2
74 * try to decompose/case-fold c1/c2, and continue if one does;
76 * // still c1!=c2 and neither decomposes/case-folds, return result
77 * return c1-c2;
170 UChar32 c1, c2, cp1, cp2; local
211 c1=c2=-1;
243 if(c2<0) {
246 if(s2==limit2 || ((c2=*s2)==0 && (limit2==NULL || (options&_STRNCMP_STYLE))))
    [all...]
  /external/icu/icu4c/source/test/intltest/
aliastst.cpp 69 Calendar* c2 = Calendar::createInstance(newLoc, status); local
73 const char* l2 = c2->getLocaleID(ULOC_VALID_LOCALE, status);
80 if(!(c1==c2)){
81 errln("CalendarTest: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName()));
85 delete c2;
114 errln("TestDateFormat: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName()));
136 Collator* c2 = Collator::createInstance(newLoc, status); local
139 Locale l2 = c2->getLocale(ULOC_VALID_LOCALE, status);
147 if(!(c1==c2)){
148 errln("CollationTest: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName()))
    [all...]
  /external/icu/icu4c/source/tools/genrb/
read.c 325 UChar32 c, c2; local
359 c2 = ucbuf_getc(buf, status); /* "/ * c" */
360 if(c2 == ASTERISK){ /* "/ * *" */
364 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 23 char c2 = s2.charAt(i); local
24 if (c1 != c2 && toLower(c1) != toLower(c2)) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/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/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
AsciiUtil.java 25 char c2 = s2.charAt(i); local
26 if (c1 != c2 && toLower(c1) != toLower(c2)) {
  /external/jacoco/org.jacoco.cli.test/src/org/jacoco/cli/internal/commands/
ReportTest.java 127 final String c2 = getClassPath() local
130 execute("report", "-classfiles", c1, "-classfiles", c2, "-html",
  /external/jemalloc/include/jemalloc/internal/
hash.h 113 const uint32_t c2 = 0x1b873593; local
125 k1 *= c2;
143 k1 *= c2; h1 ^= k1;
168 const uint32_t c2 = 0xab0e9789; local
183 k1 *= c1; k1 = hash_rotl_32(k1, 15); k1 *= c2; h1 ^= k1;
188 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
229 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
235 k1 *= c1; k1 = hash_rotl_32(k1, 15); k1 *= c2; h1 ^= k1;
268 const uint64_t c2 = KQU(0x4cf5ad432745937f); local
279 k1 *= c1; k1 = hash_rotl_64(k1, 31); k1 *= c2; h1 ^= k1
    [all...]
  /external/libchrome/base/
callback_unittest.cc 64 Callback<void(int,int)> c2; local
72 EXPECT_TRUE(c2.is_null());
  /external/libdivsufsort/lib/
divsufsort.c 200 saint_t c0, c1, c2; local
208 j = SA + BUCKET_A(c1 + 1) - 1, k = NULL, c2 = -1;
218 if(c0 != c2) {
219 if(0 <= c2) { BUCKET_B(c2, c1) = k - SA; }
220 k = SA + BUCKET_B(c2 = c0, c1);
234 k = SA + BUCKET_A(c2 = T[n - 1]);
235 *k++ = (T[n - 2] < c2) ? ~(n - 1) : (n - 1);
242 if(c0 != c2) {
243 BUCKET_A(c2) = k - SA
264 saint_t c0, c1, c2; local
    [all...]
  /external/libvpx/libvpx/vp8/common/mips/dspr2/
idctllm_dspr2.c 48 int c2, d2; local
69 c2 = temp3 - temp4;
85 op[5] = b1 + c2;
86 op[9] = b1 - c2;
101 c2 = temp3 - temp4;
117 op[7] = b1 + c2;
118 op[11] = b1 - c2;
139 c2 = temp3 - temp4;
155 op[5] = (b1 + c2 + 4) >> 3;
156 op[6] = (b1 - c2 + 4) >> 3
268 int a2, b2, c2, d2; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
encodemv.c 231 const int c2 = events[mv_max - j]; /* negative */ local
232 const int c = c1 + c2;
236 sign_ct[1] += c2;

Completed in 1321 milliseconds

<<11121314151617181920>>