/external/boringssl/src/crypto/bn/ |
prime.c | 359 int i, j, c1 = 0; local 401 if (!BN_GENCB_call(cb, BN_GENCB_GENERATED, c1++)) { 435 if (!BN_GENCB_call(cb, i, c1 - 1)) { [all...] |
/external/c-ares/ |
ares_getnameinfo.c | 400 const char *c1, *c2, *c1_begin; local 410 c1 = (const char *)c1_begin; 414 lo1 = TOLOWER(*c1); 420 c1++; 424 if (c2 == c1 && c2 == NULL)
|
/external/clang/test/CXX/special/class.ctor/ |
p6-0x.cpp | 23 constexpr Constexpr1 c1 = Constexpr1(); // ok variable
|
/external/clang/test/CodeGenCXX/ |
global-init.cpp | 177 const C c1 = C(); member in namespace:test7
|
/external/clang/test/Modules/ |
submodules-merge-defs.cpp | 37 C1 pre_c1; // expected-error +{{must be imported}} 93 C1 c1; variable
|
/external/clang/test/OpenMP/ |
target_codegen_registration.cpp | 43 // CHECK-DAG: [[C1:@.+]] = internal global [[SC]] 382 static SC c1; variable 396 c1.foo();
|
/external/clang/test/Sema/ |
attr-aligned.c | 38 char c1[__alignof__(c) == 4 ?: -1] = {0}; variable
|
bitfield-layout_1.c | 131 char c1; member in struct:__anon15434
|
string-init.c | 21 char16_t c1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}} local
|
/external/clang/test/SemaCXX/ |
string-init.cpp | 16 char16_t c1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}} local
|
warn-bad-memaccess.cpp | 18 class C1 { 22 } c1; variable in typeref:class:C1 127 memset(&c1, 0, sizeof c1);
|
/external/clang/test/SemaTemplate/ |
instantiate-member-class.cpp | 39 X<int>::C *c1; variable 46 c1 = c2; // expected-error{{assigning to 'X<int>::C *' from incompatible type 'X<float>::C *'}}
|
/external/dng_sdk/source/ |
dng_misc_opcodes.cpp | 670 real32 c1 = fCoefficient32 [1]; local 675 if (c1 > 0.0f) 683 real32 y = c1 * x; 714 c1 * x;
|
/external/eigen/bench/ |
eig33.cpp | 55 // The characteristic equation is x^3 - c2*x^2 + c1*x - c0 = 0. The 59 Scalar c1 = m(0,0)*m(1,1) - m(0,1)*m(0,1) + m(0,0)*m(2,2) - m(0,2)*m(0,2) + m(1,1)*m(2,2) - m(1,2)*m(1,2); local 65 Scalar a_over_3 = (c1 - c2*c2_over_3)*s_inv3; 69 Scalar half_b = Scalar(0.5)*(c0 + c2_over_3*(Scalar(2)*c2_over_3*c2_over_3 - c1));
|
/external/eigen/test/ |
block.cpp | 15 block_real_only(const MatrixType &m1, Index r1, Index r2, Index c1, Index c2, const Scalar& s1) { 18 VERIFY_IS_APPROX(m1.col(c1).cwiseMin(s1), m1.cwiseMin(s1).col(c1)); 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)) 57 Index c1 = internal::random<Index>(0,cols-1); local 243 Index c1 = internal::random<Index>(0,cols-1); local [all...] |
sparse_block.cpp | 251 Index c1 = internal::random<Index>(1,cols-c0); local 259 VERIFY_IS_APPROX(m2.block(r0,c0,r1,c1), refMat2.block(r0,c0,r1,c1)); 260 VERIFY_IS_APPROX((2*m2).block(r0,c0,r1,c1), (2*refMat2).block(r0,c0,r1,c1));
|
/external/eigen/unsupported/Eigen/src/EulerAngles/ |
EulerSystem.h | 203 Scalar c1 = cos(res[0]); local 204 res[2] = atan2(s1*mat(K,I)-c1*mat(J,I), c1*mat(J,J) - s1 * mat(K,J)); 239 // c2 s1.s2 c1.s2 1 0 0 240 // 0 c1 -s1 * M = 0 c3 s3 241 // -s2 s1.c2 c1.c2 0 -s3 c3 243 // Thus: m11.c1 - m21.s1 = c3 & m12.c1 - m22.s1 = s3 246 Scalar c1 = cos(res[0]); local 247 res[2] = atan2(c1*mat(J,K)-s1*mat(K,K), c1*mat(J,J) - s1 * mat(K,J)) [all...] |
/external/guava/guava/src/com/google/common/escape/ |
UnicodeEscaper.java | 269 char c1 = seq.charAt(index++); local 270 if (c1 < Character.MIN_HIGH_SURROGATE || 271 c1 > Character.MAX_LOW_SURROGATE) { 273 return c1; 274 } else if (c1 <= Character.MAX_HIGH_SURROGATE) { 277 return -c1; 282 return Character.toCodePoint(c1, c2); 290 "Unexpected low surrogate character '" + c1 + 291 "' with value " + (int) c1 + " at index " + (index - 1) +
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/ |
AsciiUtil.java | 28 char c1 = s1.charAt(i); local 30 if (c1 != c2 && toLower(c1) != toLower(c2)) {
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
LocaleAliasTest.java | 75 Calendar c1 = Calendar.getInstance(oldLoc); local 77 c1.setTime(c2.getTime()); 79 // int firstDayOfWeek1 = c1.getFirstDayOfWeek(); 88 ULocale l1 = c1.getLocale(ULocale.VALID_LOCALE); 96 if(!c1.equals(c2)){ 97 errln("CalendarTest: c1!=c2. newLoc= "+newLoc +" oldLoc= "+oldLoc);
|
/external/icu/icu4c/source/common/ |
ucmndata.c | 107 int32_t c1=(uint8_t)*s1++; local 109 cmp=c1-c2; 110 if(cmp!=0 || c1==0) { /* different or done */
|
uinvchar.c | 455 UChar32 c1, c2; local 474 c1=c; 476 c1=-1; 484 if((c1-=c2)!=0) { 485 return c1; 500 UChar32 c1, c2; local 519 c1=0; 520 } else if((c1=asciiFromEbcdic[c])!=0 && UCHAR_IS_INVARIANT(c1)) { 521 /* c1 is set * 544 int32_t c1, c2; local [all...] |
unormcmp.cpp | 63 * get one code unit c1 from s1 (-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; 220 if(c1<0) { 223 if(s1==limit1 || ((c1=*s1)==0 && (limit1==NULL || (options&_STRNCMP_STYLE)))) [all...] |
/external/icu/icu4c/source/test/intltest/ |
aliastst.cpp | 68 Calendar* c1 = Calendar::createInstance(oldLoc, status); local 72 const char* l1 = c1->getLocaleID(ULOC_VALID_LOCALE, status); 80 if(!(c1==c2)){ 81 errln("CalendarTest: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName())); 84 delete c1; 114 errln("TestDateFormat: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName())); 135 Collator* c1 = Collator::createInstance(oldLoc, status); local 138 Locale l1 = c1->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/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/ |
AsciiUtil.java | 22 char c1 = s1.charAt(i); local 24 if (c1 != c2 && toLower(c1) != toLower(c2)) {
|