HomeSort by relevance Sort by last modified time
    Searched defs:c1 (Results 676 - 700 of 1551) sorted by null

<<21222324252627282930>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 345 ECCurve c1 = this.getCurve(), c2 = other.getCurve(); local
346 boolean n1 = (null == c1), n2 = (null == c2);
351 return (i1 && i2) && (n1 || n2 || c1.equals(c2));
367 else if (!c1.equals(c2))
375 ECPoint[] points = new ECPoint[]{ this, c1.importPoint(p2) };
378 c1.normalizeAll(points);
    [all...]
  /external/clang/test/CXX/expr/expr.const/
p2-0x.cpp 245 constexpr signed char c1 = 100 * 2; // ok expected-warning{{changes value}} member in namespace:UndefinedBehavior::Overflow
  /external/clang/test/Misc/
diag-template-diffing.cpp 940 C<int> c1; local
987 C<> c1; local
    [all...]
  /external/clang/test/SemaCXX/
constant-expression-cxx11.cpp 409 constexpr char c1 = "nice index"[10]; member in namespace:StringLiteral
    [all...]
nested-name-spec.cpp 64 A::C c1; variable
317 struct C1 {
334 struct S1a { int f(C1::C2); };
335 struct S1b { int f(C1:C2); }; // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}}
338 C1::C2 f(C1::C2);
341 C1::C2 f(C1:C2); // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}}
345 int f(C1::C2), C2 : N1;
372 C1::C2 m1 : B1::B2
    [all...]
  /external/deqp/modules/gles2/functional/
es2fMultisampleTests.cpp 187 void renderTriangle (const Vec3& p0, const Vec3& p1, const Vec3& p2, const Vec4& c0, const Vec4& c1, const Vec4& c2) const;
189 void renderTriangle (const Vec2& p0, const Vec2& p1, const Vec2& p2, const Vec4& c0, const Vec4& c1, const Vec4& c2) const;
191 void renderQuad (const Vec2& p0, const Vec2& p1, const Vec2& p2, const Vec2& p3, const Vec4& c0, const Vec4& c1, const Vec4& c2, const Vec4& c3) const;
228 void MultisampleCase::renderTriangle (const Vec3& p0, const Vec3& p1, const Vec3& p2, const Vec4& c0, const Vec4& c1, const Vec4& c2) const
239 c1.x(), c1.y(), c1.z(), c1.w(),
258 void MultisampleCase::renderTriangle (const Vec2& p0, const Vec2& p1, const Vec2& p2, const Vec4& c0, const Vec4& c1, const Vec4& c2) const
263 c0, c1, c2) local
    [all...]
  /external/dng_sdk/source/
dng_parse_utils.cpp 541 char c1 = (char) ((tagCode >> 24) & 0xFF); local
546 if (c1 < ' ') c1 = '_';
551 sprintf (s, "MRW%c%c%c%c", c1, c2, c3, c4);
    [all...]
  /external/fio/
gclient.c 596 char *c1, *c2, *c3, *c4; local
611 c1 = fio_uint_to_kmg(o->min_bs[DDIR_READ]);
615 sprintf(tmp, "%s-%s/%s-%s", c1, c2, c3, c4);
616 free(c1);
    [all...]
init.c 1282 char *c1, *c2, *c3, *c4; local
1285 c1 = fio_uint_to_kmg(o->min_bs[DDIR_READ]);
1301 c1, c2, c3, c4);
1304 c1, c2, c3, c4, c5, c6);
1309 free(c1);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TimeZoneNamesImpl.java 623 char c1 = key.charAt(1); local
625 return c1 == 'g' ? ZNames.NameTypeIndex.LONG_GENERIC :
626 c1 == 's' ? ZNames.NameTypeIndex.LONG_STANDARD :
627 c1 == 'd' ? ZNames.NameTypeIndex.LONG_DAYLIGHT : null;
629 return c1 == 'g' ? ZNames.NameTypeIndex.SHORT_GENERIC :
630 c1 == 's' ? ZNames.NameTypeIndex.SHORT_STANDARD :
631 c1 == 'd' ? ZNames.NameTypeIndex.SHORT_DAYLIGHT : null;
632 } else if (c0 == 'e' && c1 == 'c') {
    [all...]
UCaseProps.java 369 int i1, length, c1, c2; local
375 c1=s.charAt(i1++);
380 c1-=c2;
381 if(c1!=0) {
382 return c1; /* return difference result */
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Normalizer.java 40 * 00C1 LATIN CAPITAL LETTER A WITH ACUTE
2193 int c1, c2, cp1, cp2; local
    [all...]
UTF16.java 2477 char c1 = 0; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationRegressionTest.java 58 int c1, c2, count = 0; local
61 c1 = i1.next();
64 if (c1 != c2) {
69 msg += ": strength(0x" + Integer.toHexString(c1);
76 } while (c1 != CollationElementIterator.NULLORDER);
88 RuleBasedCollator c1 = null; local
91 c1 = new RuleBasedCollator(rules);
100 c2 = new RuleBasedCollator(c1.getRules());
107 if (!(c1.getRules().equals(c2.getRules())))
427 // was wrong, so I've change the code to use c1 and c
428 RuleBasedCollator c1 = (RuleBasedCollator) Collator.getInstance(Locale.US); local
    [all...]
  /external/icu/icu4c/source/common/
ucnv_io.cpp 390 char c1; local
393 while ((c1 = *name++) != 0) {
394 type = GET_ASCII_TYPE(c1);
411 c1 = (char)type; /* lowercased letter */
415 *dstItr++ = c1;
425 char c1; local
428 while ((c1 = *name++) != 0) {
429 type = GET_EBCDIC_TYPE(c1);
446 c1 = (char)type; /* lowercased letter */
450 *dstItr++ = c1;
481 char c1, c2; local
    [all...]
unames.cpp 1772 uint8_t c1, c2; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
callcoll.c 1220 UCollator* c1 = NULL; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
regcoll.cpp 104 LocalPointer<RuleBasedCollator> c1(new RuleBasedCollator(rules, status), status);
111 LocalPointer<RuleBasedCollator> c2(new RuleBasedCollator(c1->getRules(), status), status);
118 if (!(c1->getRules() == c2->getRules()))
427 // was wrong, so I've change the code to use c1 and c2
428 RuleBasedCollator *c1 = (RuleBasedCollator *) en_us->clone(); local
429 c1->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_ON, status);
430 CollationElementIterator *i1 = c1->createCollationElementIterator(test1);
441 delete c1;
1404 int32_t c1, c2, count = 0; local
    [all...]
tstnorm.cpp 643 UChar32 c1, c2; local
654 c1=iter.previous();
657 c1=iter.current();
660 c1=iter.next();
665 if(c1!=c2) {
671 "got c1=U+%04lx != expected c2=U+%04lx",
672 name, history, c1, c2);
    [all...]
utxttest.cpp 132 UChar32 c1 = 0; local
140 c1 = (c1+1)%0x80;
143 if (c1==0x5c || c1==0) {
144 c1++;
146 s.append(c1);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TimeZoneNamesImpl.java 621 char c1 = key.charAt(1); local
623 return c1 == 'g' ? ZNames.NameTypeIndex.LONG_GENERIC :
624 c1 == 's' ? ZNames.NameTypeIndex.LONG_STANDARD :
625 c1 == 'd' ? ZNames.NameTypeIndex.LONG_DAYLIGHT : null;
627 return c1 == 'g' ? ZNames.NameTypeIndex.SHORT_GENERIC :
628 c1 == 's' ? ZNames.NameTypeIndex.SHORT_STANDARD :
629 c1 == 'd' ? ZNames.NameTypeIndex.SHORT_DAYLIGHT : null;
630 } else if (c0 == 'e' && c1 == 'c') {
    [all...]
UCaseProps.java 365 int i1, length, c1, c2; local
371 c1=s.charAt(i1++);
376 c1-=c2;
377 if(c1!=0) {
378 return c1; /* return difference result */
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Normalizer.java 39 * 00C1 LATIN CAPITAL LETTER A WITH ACUTE
2134 int c1, c2, cp1, cp2; local
    [all...]
UTF16.java 2563 char c1 = 0; local
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationRegressionTest.java 57 int c1, c2, count = 0; local
60 c1 = i1.next();
63 if (c1 != c2) {
68 msg += ": strength(0x" + Integer.toHexString(c1);
75 } while (c1 != CollationElementIterator.NULLORDER);
87 RuleBasedCollator c1 = null; local
90 c1 = new RuleBasedCollator(rules);
99 c2 = new RuleBasedCollator(c1.getRules());
106 if (!(c1.getRules().equals(c2.getRules())))
426 // was wrong, so I've change the code to use c1 and c
427 RuleBasedCollator c1 = (RuleBasedCollator) Collator.getInstance(Locale.US); local
    [all...]

Completed in 878 milliseconds

<<21222324252627282930>>