HomeSort by relevance Sort by last modified time
    Searched refs:c2 (Results 301 - 325 of 1127) sorted by null

<<11121314151617181920>>

  /external/icu4c/common/
normalizer2impl.cpp 221 UChar c2; local
222 if(U16_IS_TRAIL(c) && start<codePointStart && U16_IS_LEAD(c2=*(codePointStart-1))) {
224 c=U16_GET_SUPPLEMENTARY(c2, c);
457 UChar c2; local
459 if((src+1)!=limit && U16_IS_TRAIL(c2=src[1])) {
460 c=U16_GET_SUPPLEMENTARY(c, c2);
463 if(prevSrc<src && U16_IS_LEAD(c2=*(src-1))) {
465 c=U16_GET_SUPPLEMENTARY(c2, c);
1076 UChar c2; local
1323 UChar c2; local
1610 UChar c2; local
1873 UChar32 c2=c; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test_quota.c 196 int c, c2; local
213 while( (c2 = (*(z++)))!=0 ){
214 while( c2!=c ){
215 c2 = *(z++);
216 if( c2==0 ) return 0;
229 c2 = *(zGlob++);
230 if( c2=='^' ){
232 c2 = *(zGlob++);
234 if( c2==']' ){
236 c2 = *(zGlob++)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
CameraTest.java 134 Canvas c2 = new Canvas(); local
137 c2.concat(m);
139 assertTrue(c1.getMatrix().equals(c2.getMatrix()));
  /external/chromium_org/third_party/lzma_sdk/
CpuArch.c 58 UInt32 a2, b2, c2, d2; local
66 __asm mov c2, ECX; local
71 *c = c2;
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x.cpp 11 char c2{x}; // expected-error {{ cannot be narrowed }} expected-note {{override}}
152 Agg<char> c2 = {127}; // OK local
208 Agg<const unsigned char> c2 = {j}; // expected-error {{from type 'int' to 'const unsigned char' in}} expected-note {{override}} local
p7-cxx11-nowarn.cpp 12 char c2{x}; // expected-warning {{ cannot be narrowed }} expected-note {{override}}
153 Agg<char> c2 = {127}; // OK local
195 Agg<const unsigned char> c2 = {j}; // expected-warning {{from type 'int' to 'const unsigned char' in}} expected-note {{override}} local
  /external/jpeg/
jchuff.c 711 int c1, c2; local
742 /* Find the next smallest nonzero frequency, set c2 = its symbol */
744 c2 = -1;
749 c2 = i;
754 if (c2 < 0)
758 freq[c1] += freq[c2];
759 freq[c2] = 0;
768 others[c1] = c2; /* chain c2 onto c1's tree branch */
770 /* Increment the codesize of everything in c2's tree branch *
    [all...]
  /external/libvpx/libvpx/vp8/common/
idctllm.c 145 int a2, b2, c2, d2; local
176 c2 = a1 - b1;
181 op[2] = (c2 + 3) >> 3;
  /external/lzma/C/
CpuArch.c 57 UInt32 a2, b2, c2, d2; local
65 __asm mov c2, ECX; local
70 *c = c2;
  /external/opencv/cv/src/
cvsegmentation.cpp 339 tab[c1-dptr[(ofs0)+1]+255] + tab[c2-dptr[(ofs0)+2]+255] >= isr22)
426 int c0 = dptr[0], c1 = dptr[1], c2 = dptr[2]; local
446 int c0, c1, c2; local
451 c0 = sptr[0], c1 = sptr[1], c2 = sptr[2];
477 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 )
483 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 )
489 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 )
495 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 )
505 if( tab[t0-c0+255] + tab[t1-c1+255] + tab[t2-c2+255] <= isr2 )
527 tab[s2 - c2 + 255] <= termcrit.epsilon
    [all...]
  /external/qemu/distrib/jpeg-6b/
jchuff.c 711 int c1, c2; local
742 /* Find the next smallest nonzero frequency, set c2 = its symbol */
744 c2 = -1;
749 c2 = i;
754 if (c2 < 0)
758 freq[c1] += freq[c2];
759 freq[c2] = 0;
768 others[c1] = c2; /* chain c2 onto c1's tree branch */
770 /* Increment the codesize of everything in c2's tree branch *
    [all...]
  /external/skia/tests/
ColorFilterTest.cpp 86 SkColor c2 = ~color; local
88 REPORTER_ASSERT(reporter, cf2->asColorMode(&c2, &m2));
89 REPORTER_ASSERT(reporter, c2 == expectedColor);
  /frameworks/base/core/jni/
android_text_AndroidCharacter.cpp 165 int c2 = u_charMirror(c1); local
167 if (c1 != c2) {
168 data[i] = c2;
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.h 57 ColorFract(float c1, float c2, float c3): _c1(c1), _c2(c2), _c3(c3) {};
59 float c2(void) const { return _c2; } function in class:ColorFract
  /ndk/sources/cxx-stl/gabi++/tests/
catch_class_03.cpp 43 struct C2
48 explicit C2(int id) : B(id-2), id_(id) {count++;}
49 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;}
50 ~C2() {count--;}
53 int C2::count = 0;
56 : C1, C2
60 explicit A(int id) : C1(id-1), C2(id-2), id_(id) {count++;}
61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), id_(a.id_) {count++;}
71 assert(C2::count == 0)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 128 /* Compare the constants C1 and C2 with distinguishing type incompatible
132 vn_constant_eq_with_type (tree c1, tree c2)
134 return (expressions_equal_p (c1, c2)
135 && types_compatible_p (TREE_TYPE (c1), TREE_TYPE (c2)));
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 128 /* Compare the constants C1 and C2 with distinguishing type incompatible
132 vn_constant_eq_with_type (tree c1, tree c2)
134 return (expressions_equal_p (c1, c2)
135 && types_compatible_p (TREE_TYPE (c1), TREE_TYPE (c2)));
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 128 /* Compare the constants C1 and C2 with distinguishing type incompatible
132 vn_constant_eq_with_type (tree c1, tree c2)
134 return (expressions_equal_p (c1, c2)
135 && types_compatible_p (TREE_TYPE (c1), TREE_TYPE (c2)));
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 128 /* Compare the constants C1 and C2 with distinguishing type incompatible
132 vn_constant_eq_with_type (tree c1, tree c2)
134 return (expressions_equal_p (c1, c2)
135 && types_compatible_p (TREE_TYPE (c1), TREE_TYPE (c2)));
  /dalvik/dx/src/com/android/dx/dex/code/
InsnFormat.java 611 * @param c2 code unit to write
614 short c2) {
617 out.writeShort(c2);
626 * @param c2 code unit to write
630 short c2, short c3) {
633 out.writeShort(c2);
643 * @param c2 code unit to write
648 short c2, short c3, short c4) {
651 out.writeShort(c2);
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForFSB.java 485 char c2 = xstr.charAt(j); local
487 if (c1 != c2)
489 return c1 - c2;
531 char c2 = Character.toLowerCase(xstr.charAt(j)); local
533 if (c1 != c2)
535 return c1 - c2;
  /external/chromium_org/third_party/skia/src/core/
SkUtils.cpp 323 unsigned c2 = *src++;
324 SkASSERT(SkUTF16_IsLowSurrogate(c2));
326 // c = ((c & 0x3FF) << 10) + (c2 & 0x3FF) + 0x10000
327 // c = (((c & 0x3FF) + 64) << 10) + (c2 & 0x3FF)
328 c = (c << 10) + c2 + (0x10000 - (0xD800 << 10) - 0xDC00);
342 unsigned c2 = *--src;
343 SkASSERT(SkUTF16_IsHighSurrogate(c2));
344 c = (c2 << 10) + c + (0x10000 - (0xD800 << 10) - 0xDC00);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-157019.js 49 var c2 = makeConstructor();
50 var o2 = new c2();
53 new c2();
  /external/chromium_org/v8/test/webkit/
closure-inside-extra-arg-call.js 56 var c2; variable
65 c2 = function() { return d; }
71 shouldBe("c2()", '"xyxy"');
63 c2 = function() { return d; } function
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
InsnFormat.java 613 * @param c2 code unit to write
616 short c2) {
619 out.writeShort(c2);
628 * @param c2 code unit to write
632 short c2, short c3) {
635 out.writeShort(c2);
645 * @param c2 code unit to write
650 short c2, short c3, short c4) {
653 out.writeShort(c2);

Completed in 1614 milliseconds

<<11121314151617181920>>