/external/valgrind/main/exp-ptrcheck/tests/ |
unaligned.c | 10 char c0[8], c1[8], c2[8], c3[8], c4[8]; local 14 char** p2 = (char**)&c2[2]; char** p3 = (char**)&c3[3];
|
/external/valgrind/main/massif/tests/ |
alloc-fns.c | 15 void c2(int n) { c3(n); } function 16 void c1(int n) { c2(n); }
|
overloaded-new.cpp | 52 char* c2 = new (std::nothrow) char[2000]; local 56 delete [] c2;
|
/external/valgrind/main/memcheck/tests/ |
varinfo4.c | 36 typedef struct { short c1; char* c2[3]; } XX; member in struct:__anon12668 49 croak( 1 + (char*)(&a[3].xyzzy[x*y].c2[2]) );
|
/external/proguard/src/proguard/io/ |
ManifestRewriter.java | 96 int c2 = super.read(); local 97 if (c2 == ' ') 103 if (c1 != '\r' || c2 != '\n') 105 buffer[bufferSize++] = (char)c2;
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
Hex.java | 100 int c2 = hexString.charAt(j++); local 101 if (c2 > 'f') { 106 final byte d2 = DIGITS[c2];
|
/external/jpeg/ |
jquant2.c | 320 int c0,c1,c2; local 333 for (c2 = c2min; c2 <= c2max; c2++) 344 for (c2 = c2min; c2 <= c2max; c2++) 355 for (c2 = c2min; c2 <= c2max; c2++ 429 int c0,c1,c2,cmax; local 507 int c0,c1,c2; local 923 register int c0, c1, c2; local [all...] |
/external/libvpx/vp8/encoder/ |
dct.c | 68 int a2, b2, c2, d2; local 100 c2 = b1 - c1; 105 c2 += c2<0; 110 op[8] = (c2+3) >> 3;
|
/frameworks/base/services/java/com/android/server/wm/ |
Watermark.java | 68 int c2 = mTokens[0].charAt(i+1); local 72 if (c2 >= 'a' && c2 <= 'f') c2 = c2 - 'a' + 10; 73 else if (c2 >= 'A' && c2 <= 'F') c2 = c2 - 'A' + 10; 74 else c2 -= '0' [all...] |
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
CalendarDatabaseHelperTest.java | 506 private static boolean compareCursors(Cursor c1, Cursor c2) { 507 if(c1 == null || c2 == null) { 508 Log.d("CDBT","c1 is " + c1 + " and c2 is " + c2); 513 if (numColumns != c2.getColumnCount()) { 514 Log.d("CDBT","c1 has " + numColumns + " columns and c2 has " + c2.getColumnCount()); 518 if (c1.getCount() != c2.getCount()) { 519 Log.d("CDBT","c1 has " + c1.getCount() + " rows and c2 has " + c2.getCount()) [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Gradient_Delegate.java | 192 * Returns the color between c1, and c2, based on the percent of the distance 193 * between c1 and c2. 195 private int computeColor(int c1, int c2, float percent) { 196 int a = computeChannel((c1 >> 24) & 0xFF, (c2 >> 24) & 0xFF, percent); 197 int r = computeChannel((c1 >> 16) & 0xFF, (c2 >> 16) & 0xFF, percent); 198 int g = computeChannel((c1 >> 8) & 0xFF, (c2 >> 8) & 0xFF, percent); 199 int b = computeChannel((c1 ) & 0xFF, (c2 ) & 0xFF, percent); 207 private int computeChannel(int c1, int c2, float percent) { 208 return c1 + (int)((percent * (c2-c1)) + .5);
|
/external/icu4c/common/ |
cstring.c | 234 unsigned char c1, c2; local 238 c2=(unsigned char)*str2; 240 if(c2==0) { 245 } else if(c2==0) { 249 rc=(int)(unsigned char)uprv_tolower(c1)-(int)(unsigned char)uprv_tolower(c2); 273 unsigned char c1, c2; local 277 c2=(unsigned char)*str2; 279 if(c2==0) { 284 } else if(c2==0) { 288 rc=(int)(unsigned char)uprv_tolower(c1)-(int)(unsigned char)uprv_tolower(c2); [all...] |
ustring.c | 467 UChar c, c2; local 501 * because c2 could at worst be the terminating NUL. 503 if(U16_IS_SURROGATE_LEAD(c) && U16_IS_TRAIL(c2 = string[strItr])) { 505 stringCh = U16_GET_SUPPLEMENTARY(c, c2); 670 UChar c1, c2; local 674 c2=*s2++; 675 if (c1 != c2 || c1 == 0) { 679 return (int32_t)c1 - (int32_t)c2; 687 UChar c1, c2; local 702 c2=*s2 826 UChar32 c1, c2; local 1310 UChar c2 = charAt(*offset, context); local 1323 UChar c2 = charAt(*offset, context); local [all...] |
/external/valgrind/tsan/ |
ts_replace.h | 180 unsigned char c2; local 184 c2 = (unsigned char)s2[i]; 185 if (c1 != c2) break; 190 if (c1 < c2) return -1; 191 if (c1 > c2) return 1; 198 unsigned char c2 = 0; local 202 c2 = (unsigned char)s2[i]; 203 if (c1 != c2) break; 208 if (c1 < c2) return -1; 209 if (c1 > c2) return 1 [all...] |
/libcore/luni/src/test/java/libcore/java/util/ |
OldCollectionsTest.java | 523 Collection<Object> c2 = new ArrayList<Object>(); local 525 Collections.addAll(c2, arr2); 526 assertTrue(Collections.disjoint(c1, c2)); 528 assertFalse(Collections.disjoint(c1, c2)); 531 c2 = new LinkedList<Object>(); 533 Collections.addAll(c2, arr2); 534 assertTrue(Collections.disjoint(c1, c2)); 536 assertFalse(Collections.disjoint(c1, c2)); 539 c2 = new TreeSet<Object>(); 541 Collections.addAll(c2, arr2) [all...] |
/external/webkit/Source/JavaScriptCore/parser/ |
Lexer.h | 46 static unsigned char convertHex(int c1, int c2); 47 static UChar convertUnicode(int c1, int c2, int c3, int c4); 160 inline unsigned char Lexer::convertHex(int c1, int c2) 162 return (toASCIIHexValue(c1) << 4) | toASCIIHexValue(c2); 165 inline UChar Lexer::convertUnicode(int c1, int c2, int c3, int c4) 167 return (convertHex(c1, c2) << 8) | convertHex(c3, c4);
|
/dalvik/vm/hprof/ |
HprofClass.cpp | 58 const ClassObject *c2 = (const ClassObject *)v2; local 61 diff = (uintptr_t)c1->classLoader - (uintptr_t)c2->classLoader; 63 return strcmp(c1->descriptor, c2->descriptor);
|
/external/chromium/chrome/browser/ui/views/ |
theme_helpers.cc | 17 SkColor* c1, SkColor* c2) { 18 DCHECK(c1 && c2) << 19 "ThemeHelpers::GetRebarGradientColors - c1 or c2 is NULL!"; 71 *c2 = 0xFF000000 | device.getColorAt(x2, 0);
|
/external/skia/tests/ |
ColorFilterTest.cpp | 83 SkColor c2 = ~color; local 85 REPORTER_ASSERT(reporter, cf2->asColorMode(&c2, &m2)); 86 REPORTER_ASSERT(reporter, c2 == expectedColor);
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
LoopBlinnClassifier.cpp | 41 const FloatPoint& c2, 50 FloatPoint3D b2(c2.x(), c2.y(), 1.0f);
|
LoopBlinnClassifier.h | 72 // at c3, and affected by control points c1 and c2. 75 const FloatPoint& c2,
|
/external/chromium/third_party/libjingle/source/talk/base/ |
stringutils.cc | 72 wchar_t c1, c2; local 79 c2 = transformation(*s2); 80 if (c1 != c2) return (c1 < c2) ? -1 : 1;
|
/external/clang/test/CodeGenCXX/ |
array-operator-delete-call.cpp | 59 COST c2; variable
|
/system/extras/tests/bionic/libstdc++/ |
test_climits.cpp | 48 volatile char c2 = CHAR_MAX; local
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
CollatorTest.java | 31 Collator c2 = (Collator) c.clone(); local 32 assertTrue("Clones answered false to equals", c.equals(c2)); 33 assertTrue("Clones were equivalent", c != c2); 127 Collator c2 = (Collator) c.clone(); local 128 assertTrue("Cloned collators not equal", c.equals(c2)); 129 c2.setStrength(Collator.SECONDARY); 130 assertTrue("Collators with different strengths equal", !c.equals(c2)); 223 Collator c2 = Collator.getInstance(Locale.getDefault()); local 224 assertTrue("Wrong locale", c1.equals(c2));
|