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

<<11121314151617181920>>

  /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/pixman/pixman/
pixman-radial-gradient.c 452 radial->c2.x = outer->x;
453 radial->c2.y = outer->y;
454 radial->c2.radius = outer_radius;
457 radial->delta.x = radial->c2.x - radial->c1.x;
458 radial->delta.y = radial->c2.y - radial->c1.y;
459 radial->delta.radius = radial->c2.radius - radial->c1.radius;
  /external/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);
  /bionic/libc/kernel/common/linux/
binder.h 22 #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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
xa_tracker.h 84 #define xa_format_c(bpp,type,c1,c2) (((bpp) << 24) | \
87 ((c2)))
  /external/clang/test/SemaTemplate/
instantiate-member-class.cpp 38 X<float>::C *c2; variable
44 c1 = c2; // expected-error{{assigning to 'X<int>::C *' from incompatible type 'X<float>::C *'}}
  /external/icu4c/common/
ucasemap.cpp 220 UChar32 c, c2 = 0; local
241 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0x7f : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0x7f)) {
243 dest[destIndex++]=(uint8_t)c2;
428 UChar32 c, c2; local
443 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0x7f : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0x7f)) {
445 dest[destIndex++]=(uint8_t)c2;
  /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/mesa3d/src/gallium/state_trackers/xa/
xa_tracker.h 84 #define xa_format_c(bpp,type,c1,c2) (((bpp) << 24) | \
87 ((c2)))
  /external/valgrind/main/memcheck/tests/
varinfo5so.c 126 typedef struct { short c1; char* c2[3]; } XX; member in struct:__anon28316
139 croak( 1 + (char*)(&a[3].xyzzy[x*y].c2[2]) );
  /external/wpa_supplicant_8/src/wps/
httpread.c 113 int c2; local
118 c2 = *s2++;
121 if (isalpha(c2) && isupper(c2))
122 c2 = tolower(c2);
124 end2 = !isgraph(c2);
125 if (end1 || end2 || c1 != c2)
  /libcore/luni/src/test/java/tests/api/java/util/
CurrencyTest.java 53 Currency c2 = Currency.getInstance(new Locale("fr", "CA")); local
56 c2 == c0);
67 c2 = Currency.getInstance(new Locale("", "JP"));
70 c2 == c0);
306 Currency c2 = Currency.getInstance("EUR"); local
307 c2.getDefaultFractionDigits();
308 assertEquals(" Currency.getInstance(\"" + c2
309 + "\") returned incorrect number of digits. ", 2, c2
  /ndk/sources/cxx-stl/gabi++/tests/
catch_ptr.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), B(id+3), id_(id) {count++;}
61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), B(a.id_+3), id_(a.id_) {count++;}
86 assert(static_cast<const C2*>(a)->id_ == 3)
    [all...]
  /prebuilts/ndk/4/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))
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/5/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))
  /prebuilts/ndk/6/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))
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/7/platforms/android-14/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 1434 milliseconds

<<11121314151617181920>>