HomeSort by relevance Sort by last modified time
    Searched refs:c2 (Results 126 - 150 of 498) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_model.c 159 uint64_t *dst64, *dst64_end, c2; local
162 c2 = ((uint64_t)c1 << 32) | c1;
168 dst64[0] = c2;
169 dst64[1] = c2;
170 dst64[2] = c2;
171 dst64[3] = c2;
172 dst64[4] = c2;
173 dst64[5] = c2;
174 dst64[6] = c2;
175 dst64[7] = c2;
187 uint64_t *dst64, *dst64_end, c2; local
    [all...]
ewk_cookies.cpp 146 SoupCookie* c2 = static_cast<SoupCookie*>(p->data); local
147 if (soup_cookie_equal(c1, c2)) {
148 soup_cookie_jar_delete_cookie(cookieJar, c2);
  /external/icu4c/common/
normalizer2impl.cpp 220 UChar c2; local
221 if(U16_IS_TRAIL(c) && start<codePointStart && U16_IS_LEAD(c2=*(codePointStart-1))) {
223 c=U16_GET_SUPPLEMENTARY(c2, c);
434 UChar c2; local
436 if((src+1)!=limit && U16_IS_TRAIL(c2=src[1])) {
437 c=U16_GET_SUPPLEMENTARY(c, c2);
440 if(prevSrc<src && U16_IS_LEAD(c2=*(src-1))) {
442 c=U16_GET_SUPPLEMENTARY(c2, c);
952 UChar c2; local
1199 UChar c2; local
1556 UChar c2; local
1815 UChar32 c2=c; local
    [all...]
  /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/vp8/common/
idctllm.c 137 int a2, b2, c2, d2; local
168 c2 = a1 - b1;
173 op[2] = (c2 + 3) >> 3;
  /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...]
  /frameworks/base/core/jni/
android_text_AndroidCharacter.cpp 164 int c2 = u_charMirror(c1); local
166 if (c1 != c2) {
167 data[i] = c2;
  /frameworks/base/opengl/tests/hwc/
hwcTestLib.h 60 ColorFract(float c1, float c2, float c3): _c1(c1), _c2(c2), _c3(c3) {};
62 float c2(void) const { return _c2; } function in class:ColorFract
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree-ssa-sccvn.h 121 /* Compare the constants C1 and C2 with distinguishing type incompatible
125 vn_constant_eq_with_type (tree c1, tree c2)
127 return (expressions_equal_p (c1, c2)
128 && types_compatible_p (TREE_TYPE (c1), TREE_TYPE (c2)));
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
tree-ssa-sccvn.h 121 /* Compare the constants C1 and C2 with distinguishing type incompatible
125 vn_constant_eq_with_type (tree c1, tree c2)
127 return (expressions_equal_p (c1, c2)
128 && types_compatible_p (TREE_TYPE (c1), TREE_TYPE (c2)));
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
tree-ssa-sccvn.h 121 /* Compare the constants C1 and C2 with distinguishing type incompatible
125 vn_constant_eq_with_type (tree c1, tree c2)
127 return (expressions_equal_p (c1, c2)
128 && types_compatible_p (TREE_TYPE (c1), TREE_TYPE (c2)));
  /dalvik/dx/src/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);
  /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/dnsmasq/src/
util.c 287 unsigned int c1, c2; local
291 c2 = (unsigned char) *b++;
295 if (c2 >= 'A' && c2 <= 'Z')
296 c2 += 'a' - 'A';
298 if (c1 != c2)
  /external/skia/src/core/
SkUtils.cpp 334 unsigned c2 = *src++;
335 SkASSERT(SkUTF16_IsLowSurrogate(c2));
337 // c = ((c & 0x3FF) << 10) + (c2 & 0x3FF) + 0x10000
338 // c = (((c & 0x3FF) + 64) << 10) + (c2 & 0x3FF)
339 c = (c << 10) + c2 + (0x10000 - (0xD800 << 10) - 0xDC00);
353 unsigned c2 = *--src;
354 SkASSERT(SkUTF16_IsHighSurrogate(c2));
355 c = (c2 << 10) + c + (0x10000 - (0xD800 << 10) - 0xDC00);
SkQuadClipper.cpp 41 static bool chopMonoQuadAt(SkScalar c0, SkScalar c1, SkScalar c2,
47 SkScalar A = c0 - c1 - c1 + c2;
  /bionic/libc/kernel/common/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /development/ndk/platforms/android-3/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /external/chromium/base/
callback_unittest.cc 80 Callback<void(int,int)> c2; local
88 EXPECT_TRUE(c2.is_null());
  /external/kernel-headers/original/linux/
binder.h 25 #define B_PACK_CHARS(c1, c2, c3, c4) \
26 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /external/valgrind/main/memcheck/tests/
varinfo5so.c 126 typedef struct { short c1; char* c2[3]; } XX; member in struct:__anon12670
139 croak( 1 + (char*)(&a[3].xyzzy[x*y].c2[2]) );
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
httpread.c 119 int c2; local
124 c2 = *s2++;
127 if (isalpha(c2) && isupper(c2))
128 c2 = tolower(c2);
130 end2 = !isgraph(c2);
131 if (end1 || end2 || c1 != c2)
  /external/wpa_supplicant_8/src/wps/
httpread.c 119 int c2; local
124 c2 = *s2++;
127 if (isalpha(c2) && isupper(c2))
128 c2 = tolower(c2);
130 end2 = !isgraph(c2);
131 if (end1 || end2 || c1 != c2)
  /libcore/luni/src/test/java/tests/api/java/util/
CurrencyTest.java 55 Currency c2 = Currency.getInstance(new Locale("fr", "CA")); local
58 c2 == c0);
69 c2 = Currency.getInstance(new Locale("", "JP"));
72 c2 == c0);
309 Currency c2 = Currency.getInstance("EUR"); local
310 c2.getDefaultFractionDigits();
311 assertEquals(" Currency.getInstance(\"" + c2
312 + "\") returned incorrect number of digits. ", 2, c2
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))

Completed in 1062 milliseconds

1 2 3 4 56 7 8 91011>>