/external/icu4c/common/ |
ustrcase.c | 672 UChar32 c1, c2, cp1, cp2; local 701 c1=c2=-1; 710 if(c1<0) { 713 if(s1==limit1 || ((c1=*s1)==0 && (limit1==NULL || (options&_STRNCMP_STYLE)))) { 715 c1=-1; 757 * compare c1 and c2 758 * either variable c1, c2 is -1 only if the corresponding string is finished 760 if(c1==c2) { 761 if(c1<0) { 762 return 0; /* c1==c2==-1 indicating end of strings * [all...] |
/external/bluetooth/bluez/test/ |
l2test.c | 122 int c1; local 124 c1 = (c >> 28) & 0x0f; 125 *(s++) = NIBBLE_TO_ASCII (c1); 126 c1 = (c >> 24) & 0x0f; 127 *(s++) = NIBBLE_TO_ASCII (c1); 128 c1 = (c >> 20) & 0x0f; 129 *(s++) = NIBBLE_TO_ASCII (c1); 130 c1 = (c >> 16) & 0x0f; 131 *(s++) = NIBBLE_TO_ASCII (c1); 132 c1 = (c >> 12) & 0x0f 146 char c1; local [all...] |
/external/v8/benchmarks/ |
raytrace.js | 94 add : function(c1, c2){ 97 result.red = c1.red + c2.red; 98 result.green = c1.green + c2.green; 99 result.blue = c1.blue + c2.blue; 104 addScalar: function(c1, s){ 107 result.red = c1.red + s; 108 result.green = c1.green + s; 109 result.blue = c1.blue + s; 116 subtract: function(c1, c2){ 119 result.red = c1.red - c2.red [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/ |
v8-raytrace.js | 89 add : function(c1, c2){ 92 result.red = c1.red + c2.red; 93 result.green = c1.green + c2.green; 94 result.blue = c1.blue + c2.blue; 99 addScalar: function(c1, s){ 102 result.red = c1.red + s; 103 result.green = c1.green + s; 104 result.blue = c1.blue + s; 111 subtract: function(c1, c2){ 114 result.red = c1.red - c2.red [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/ |
v8-raytrace.js | 89 add : function(c1, c2){ 92 result.red = c1.red + c2.red; 93 result.green = c1.green + c2.green; 94 result.blue = c1.blue + c2.blue; 99 addScalar: function(c1, s){ 102 result.red = c1.red + s; 103 result.green = c1.green + s; 104 result.blue = c1.blue + s; 111 subtract: function(c1, c2){ 114 result.red = c1.red - c2.red [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/ |
v8-raytrace.js | 89 add : function(c1, c2){ 92 result.red = c1.red + c2.red; 93 result.green = c1.green + c2.green; 94 result.blue = c1.blue + c2.blue; 99 addScalar: function(c1, s){ 102 result.red = c1.red + s; 103 result.green = c1.green + s; 104 result.blue = c1.blue + s; 111 subtract: function(c1, c2){ 114 result.red = c1.red - c2.red [all...] |
/external/dnsmasq/src/ |
util.c | 287 unsigned int c1, c2; local 290 c1 = (unsigned char) *a++; 293 if (c1 >= 'A' && c1 <= 'Z') 294 c1 += 'a' - 'A'; 298 if (c1 != c2) 300 } while (c1);
|
/external/jpeg/ |
wrjpgcom.c | 107 int c1, c2; local 109 c1 = NEXTBYTE(); 110 if (c1 == EOF) 115 return (((unsigned int) c1) << 8) + ((unsigned int) c2); 224 int c1, c2; local 226 c1 = NEXTBYTE(); 228 if (c1 != 0xFF || c2 != M_SOI)
|
/frameworks/base/graphics/java/android/renderscript/ |
Matrix4f.java | 378 int c1 = (i+2) % 4; local 384 float minor = (mMat[c0 + 4*r0] * (mMat[c1 + 4*r1] * mMat[c2 + 4*r2] - 385 mMat[c1 + 4*r2] * mMat[c2 + 4*r1])) 386 - (mMat[c0 + 4*r1] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r2] - 387 mMat[c1 + 4*r2] * mMat[c2 + 4*r0])) 388 + (mMat[c0 + 4*r2] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r1] - 389 mMat[c1 + 4*r1] * mMat[c2 + 4*r0]));
|
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_image_homography.cpp | 44 inline void db_SProjImagePointPointConstraints(double c1[9],double c2[9],double xp[3],double x[3]) 57 db_SProjImagePointPointConstraint(c1,1,0,2,xp,x); 61 db_SProjImagePointPointConstraint(c1,0,1,2,xp,x); 65 db_SProjImagePointPointConstraint(c1,0,2,1,xp,x); 70 inline void db_SAffineImagePointPointConstraints(double c1[7],double c2[7],double xp[3],double x[3]) 75 db_Copy6(c1,ct1); c1[6]=ct1[8];
|
/external/libvpx/vp8/common/arm/armv6/ |
idct_v6.asm | 76 rsb r11, r11, r10 ; c1 = temp1 - temp2 1 c1 79 add r8, r7, r11 ; b1 + c1 1 b+c 80 strh r8, [r1, r2] ; out[pitch] = b1+c1 1 81 sub r7, r7, r11 ; b1 - c1 1 b-c 87 strh r7, [r1, r8] ; out[pitch*2] = b1-c1 1 108 rsb r9, r10, r9 ; c1 = temp1 - temp2 1 c1 111 add r3, r0, r9 ; b1+c1 1 b+c 112 add r3, r3, #4 ; b1+c1+4 1 + [all...] |
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
CipherSuiteTest.java | 29 CipherSuite c1 = new CipherSuite("CipherSuite1", false, 0, "", "", local 37 if (!c1.equals(c2) || c1.equals(c3) || c4.equals(c1) || c4.equals(c3)) { 43 CipherSuite c1 = new CipherSuite("CipherSuite1", false, 0, "", "", local 46 c1.toString()); 91 CipherSuite c1 = new CipherSuite("CipherSuite1", false, local 100 assertTrue(c1.isAnonymous()); 101 assertTrue(c1.isAnonymous());
|
/external/libnfc-nxp/src/ |
phFriNfc_NdefReg.c | 51 int8_t c1, c2; local 55 c1 = *s1; 57 if (c1 >=97) 58 c1 = (c1 - 32); 65 while ( (c1 == c2) && (c1 != '\0') && (c2 != '\0') && (count > 0) ); 67 if ( (count == 0) || (c1 == c2) ) 70 else if ( (c1 > c2) )
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
ColorPickerDialog.java | 130 int c1 = colors[i+1]; local 131 int a = ave(Color.alpha(c0), Color.alpha(c1), p); 132 int r = ave(Color.red(c0), Color.red(c1), p); 133 int g = ave(Color.green(c0), Color.green(c1), p); 134 int b = ave(Color.blue(c0), Color.blue(c1), p);
|
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
ColorWheel.java | 147 int c1 = colors[i+1]; local 148 int a = ave(Color.alpha(c0), Color.alpha(c1), p); 149 int r = ave(Color.red(c0), Color.red(c1), p); 150 int g = ave(Color.green(c0), Color.green(c1), p); 151 int b = ave(Color.blue(c0), Color.blue(c1), p);
|
/external/e2fsprogs/intl/ |
localealias.c | 394 unsigned char c1, c2; 403 c1 = isupper (*p1) ? tolower (*p1) : *p1; 405 if (c1 == '\0') 410 while (c1 == c2); 412 return c1 - c2;
|
/external/libvpx/vp8/decoder/arm/neon/ |
idct_dequant_dc_full_2x_neon.asm | 67 ; q6: 4 * sinpi : c1/temp1 91 ; q5: 12 + 12 * cospi : c1/temp2 95 ; c1 = temp1 - temp2 101 ; [1]: b1+c1 102 ; [2]: b1-c1 120 ; q8: 1 * sinpi : c1/temp1 137 ; q11: 3 + 3 * cospi : c1/temp2 141 ; q8: c1 = temp1 - temp2 147 ; b1+c1 148 ; b1-c1 [all...] |
idct_dequant_full_2x_neon.asm | 59 ; q6: 4 * sinpi : c1/temp1 83 ; q5: 12 + 12 * cospi : c1/temp2 87 ; c1 = temp1 - temp2 93 ; [1]: b1+c1 94 ; [2]: b1-c1 112 ; q8: 1 * sinpi : c1/temp1 129 ; q11: 3 + 3 * cospi : c1/temp2 133 ; q8: c1 = temp1 - temp2 139 ; b1+c1 140 ; b1-c1 [all...] |
/external/webkit/Source/WebCore/platform/text/ |
TextEncodingRegistry.cpp | 74 char c1; local 77 c1 = *s1++; 79 if (toASCIILower(c1) != toASCIILower(c2)) 81 } while (c1 && c2); 82 return !c1 && !c2;
|
/external/webkit/Source/WebCore/rendering/style/ |
StyleRareInheritedData.cpp | 131 static bool cursorDataEquivalent(const CursorList* c1, const CursorList* c2) 133 if (c1 == c2) 135 if ((!c1 && c2) || (c1 && !c2)) 137 return (*c1 == *c2);
|
/external/opencv/cv/src/ |
cvpyrsegmentation.cpp | 1042 float c0, c1, c2, c3, c4; local 1225 float c1, c2, c3, c4; local [all...] |
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 ) 526 tab[s0 - c0 + 255] + tab[s1 - c1 + 255] [all...] |
/external/webkit/Source/WebKit/efl/ewk/ |
ewk_cookies.cpp | 141 SoupCookie* c1 = soup_cookie_new( local 147 if (soup_cookie_equal(c1, c2)) { 153 soup_cookie_free(c1);
|
/frameworks/base/core/jni/ |
android_text_AndroidCharacter.cpp | 163 int c1 = data[i]; local 164 int c2 = u_charMirror(c1); 166 if (c1 != c2) {
|
/frameworks/base/opengl/tests/hwc/ |
hwcTestLib.h | 60 ColorFract(float c1, float c2, float c3): _c1(c1), _c2(c2), _c3(c3) {}; 61 float c1(void) const { return _c1; } function in class:ColorFract
|