HomeSort by relevance Sort by last modified time
    Searched defs:c2 (Results 426 - 450 of 1255) sorted by null

<<11121314151617181920>>

  /external/clang/test/CodeGenCXX/
mangle-ms-return-qualifiers.cpp 59 const A c2() { return A(); } function
60 // CHECK: "\01?c2@@YA?BVA@@XZ"
mangle-ms-templates.cpp 67 Class<Nested<Typename> > c2; local
x86_64-arguments.cpp 70 struct c2 : public s2 {}; struct in namespace:PR7742
72 // CHECK-LABEL: define <2 x float> @_ZN6PR77423fooEPNS_2c2E(%"struct.PR7742::c2"* %P)
73 c2 foo(c2 *P) {
74 return c2();
  /external/clang/test/Sema/
MicrosoftExtensions.c 13 char c2[]; /* expected-warning {{flexible array member 'c2' in a union is a Microsoft extension}} */ member in union:C::__anon8644
  /external/clang/test/SemaCXX/
array-bounds.cpp 70 char c2 = str2[5]; // expected-warning {{array index 5 is past the end of the array (which contains 4 elements)}} local
191 char c2[1]; member in struct:tailpad::foo
198 char c2[1]; member in class:tailpad::baz
203 F->c2[3] + // no warning, foo could have tail padding allocated.
205 B->c2[3]; // no warning, baz could have tail padding allocated.
cxx0x-initializer-constructor.cpp 406 C c2[3] = { member in namespace:PR11410
scope-check.cpp 242 const C &c2 = c0; local
  /external/curl/lib/
cookie.c 967 struct Cookie *c2 = *(struct Cookie **)p2; local
972 l2 = c2->path ? strlen(c2->path) : 0;
979 l2 = c2->domain ? strlen(c2->domain) : 0;
985 if(c1->name && c2->name)
986 return strcmp(c1->name, c2->name);
    [all...]
  /external/dnsmasq/src/
forward.c 739 unsigned char c1, c2; local
748 !read_write(confd, &c1, 1, 1) || !read_write(confd, &c2, 1, 1) ||
749 !(size = c1 << 8 | c2) ||
842 c2 = size;
845 !read_write(last_server->tcpfd, &c2, 1, 0) ||
848 !read_write(last_server->tcpfd, &c2, 1, 1))
855 m = (c1 << 8) | c2;
891 c2 = m;
893 !read_write(confd, &c2, 1, 0) ||
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
SelfAdjointEigenSolver.h 515 // The characteristic equation is x^3 - c2*x^2 + c1*x - c0 = 0. The
520 Scalar c2 = m(0,0) + m(1,1) + m(2,2); local
524 Scalar c2_over_3 = c2*s_inv3;
525 Scalar a_over_3 = (c2*c2_over_3 - c1)*s_inv3;
698 Scalar c2 = numext::abs2(scaledMat(1,1)); local
700 if(a2>c2)
708 eivecs.col(1) /= sqrt(c2+b2);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UBiDiProps.java 187 int c2; local
194 c2=getMirrorCodePoint(m);
195 if(c==c2) {
198 } else if(c<c2) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
BiDiConformanceTest.java 380 char c0, c1, c2; local
387 c2=line.charAt(lineIndex+2);
388 if(c2=='E') {
390 } else if(c2=='I') {
392 } else if(c2=='O') {
400 c2=line.charAt(lineIndex+2);
401 if(c2=='E') {
403 } else if(c2=='I') {
405 } else if(c2=='O') {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/iterator/
TestUCharacterIterator.java 355 int c1, c2; local
368 c2=iter32.previous();
371 c2=iter32.current();
374 c2=iter32.next();
378 if(c1!=c2) {
382 +"got c1= " + hex(c1) +" != expected c2= "+ hex(c2));
405 int c1, c2; local
413 c2=ci.previous();
416 c2=ci.current()
    [all...]
  /external/icu/icu4c/source/common/
uiter.cpp 1023 UChar32 c, c2; local
1033 if(U16_IS_TRAIL(c2=iter->current(iter))) {
1034 c=U16_GET_SUPPLEMENTARY(c, c2);
1040 if(U16_IS_LEAD(c2=iter->previous(iter))) {
1041 c=U16_GET_SUPPLEMENTARY(c2, c);
1043 if(c2>=0) {
1054 UChar32 c, c2; local
1058 if(U16_IS_TRAIL(c2=iter->next(iter))) {
1059 c=U16_GET_SUPPLEMENTARY(c, c2);
1060 } else if(c2>=0)
1070 UChar32 c, c2; local
    [all...]
unisetspan.cpp 484 UChar c=*s, c2; local
485 if(c>=0xd800 && c<=0xdbff && length>=2 && U16_IS_TRAIL(c2=s[1])) {
486 return set.contains(U16_GET_SUPPLEMENTARY(c, c2)) ? 2 : -2;
493 UChar c=s[length-1], c2; local
494 if(c>=0xdc00 && c<=0xdfff && length>=2 && U16_IS_LEAD(c2=s[length-2])) {
495 return set.contains(U16_GET_SUPPLEMENTARY(c2, c)) ? 2 : -2;
    [all...]
  /external/icu/icu4c/source/test/cintltst/
utf8tst.c 413 UChar32 c, c2, expected; local
455 U8_GET(input, 0, j, -1, c2);
456 if(c2!=c) {
457 log_err("U8_NEXT(from %d)=U+%04x != U+%04x=U8_GET(at %d)\n", i0, c, c2, j);
459 U8_GET_OR_FFFD(input, 0, j, -1, c2);
461 if(c2!=expected) {
462 log_err("U8_NEXT_OR_FFFD(from %d)=U+%04x != U+%04x=U8_GET_OR_FFFD(at %d)\n", i0, expected, c2, j);
    [all...]
  /external/icu/icu4c/source/test/intltest/
collationtest.cpp 395 UChar32 c2 = cpi.next(); local
396 if(c1 != c2) {
398 name, (long)c1, (long)c2, cpi.getIndex());
407 UChar32 c2 = cpi.previous(); local
408 if(c1 != c2) {
410 name, (long)c1, (long)c2, cpi.getIndex());
418 UChar32 c2 = cpi.next(); local
419 if(c1 != c2) {
421 name, (long)c1, (long)c2, cpi.getIndex());
430 UChar32 c2 = cpi.previous() local
    [all...]
  /external/icu/icu4c/source/test/perf/dicttrieperf/
dicttrieperf.cpp 192 int32_t c2=(uint8_t)*s2++; local
193 cmp=c1-c2;
  /external/icu/icu4c/source/tools/toolutil/
ucbuf.c 376 UChar32 c32,c1,c2; local
392 c2 = *(buf->currentPos);
431 }else if(c32!=c2 || (c32==0x0075 && c2==0x0075 && c1==0x005C) /* for \u0075 c2=0x0075 and c32==0x0075*/){
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UBiDiProps.java 183 int c2; local
190 c2=getMirrorCodePoint(m);
191 if(c==c2) {
194 } else if(c<c2) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
BiDiConformanceTest.java 376 char c0, c1, c2; local
383 c2=line.charAt(lineIndex+2);
384 if(c2=='E') {
386 } else if(c2=='I') {
388 } else if(c2=='O') {
396 c2=line.charAt(lineIndex+2);
397 if(c2=='E') {
399 } else if(c2=='I') {
401 } else if(c2=='O') {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/
TestUCharacterIterator.java 351 int c1, c2; local
364 c2=iter32.previous();
367 c2=iter32.current();
370 c2=iter32.next();
374 if(c1!=c2) {
378 +"got c1= " + hex(c1) +" != expected c2= "+ hex(c2));
401 int c1, c2; local
409 c2=ci.previous();
412 c2=ci.current()
    [all...]
  /external/libopus/tests/
test_opus_encode.c 60 opus_int32 c1,c2,d1,d2; local
63 c1=c2=d1=d2=0;
77 c2=(30*(c2+b2+d2)+32)>>6;d2=b2;
79 v2=(c2+128)>>8;
  /external/libvpx/libvpx/vpx_dsp/
fastssim.c 306 double c2; local
321 c2 = SSIM_C2 * (1 << 4 * _l) * 16 * 104;
370 ssim[(j - 4) * w + i] = (2 * mugxgy + c2) / (mugx2 + mugy2 + c2);
  /external/libyuv/files/source/
compare.cc 498 const int64 c2 = (cc2 * count * count) >> 12; local
503 (2 * count * sum_axb - 2 * sum_a_x_sum_b + c2);
510 count * sum_sq_b - sum_b_sq + c2);

Completed in 1244 milliseconds

<<11121314151617181920>>