HomeSort by relevance Sort by last modified time
    Searched refs:c1 (Results 351 - 375 of 1154) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/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/chromium_org/third_party/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/chromium_org/third_party/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/chromium_org/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/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/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/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
ShaderUtils.java 74 public static final float[] mix(final float[] c1, final float[] c2, final float f) {
75 return new float[] { ShaderUtils.mix(c1[0], c2[0], f), ShaderUtils.mix(c1[1], c2[1], f), ShaderUtils.mix(c1[2], c2[2], f) };
153 float c0, c1, c2, c3; /* coefficients of the cubic. */ local
167 c1 = CR20 * knot[span + 0] + CR21 * knot[span + 1] + CR22 * knot[span + 2] + CR23 * knot[span + 3];
169 return ((c3 * x + c2) * x + c1) * x + c0;
  /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)
  /external/qemu/distrib/jpeg-6b/
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)
  /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];
  /packages/apps/Camera2/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];
  /packages/apps/LegacyCamera/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/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/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleRareInheritedData.cpp 161 static bool cursorDataEquivalent(const CursorList* c1, const CursorList* c2)
163 if (c1 == c2)
165 if ((!c1 && c2) || (c1 && !c2))
167 return (*c1 == *c2);
  /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/libvpx/vp8/common/arm/neon/
idct_dequant_full_2x_neon.asm 57 ; q6: 4 * sinpi : c1/temp1
81 ; q5: 12 + 12 * cospi : c1/temp2
85 ; c1 = temp1 - temp2
91 ; [1]: b1+c1
92 ; [2]: b1-c1
110 ; q8: 1 * sinpi : c1/temp1
127 ; q11: 3 + 3 * cospi : c1/temp2
131 ; q8: c1 = temp1 - temp2
137 ; b1+c1
138 ; b1-c1
    [all...]
  /external/skia/tests/
ImageDecodingTest.cpp 122 // "c1" is the result of premultiplying the color of the unpremultiplied
124 const SkPMColor c1 = premultiply_unpmcolor(*bm8888Unpremul.getAddr32(i, j)); local
126 int da = SkAbs32(SkGetPackedA32(c0) - SkGetPackedA32(c1));
127 int dr = SkAbs32(SkGetPackedR32(c0) - SkGetPackedR32(c1));
128 int dg = SkAbs32(SkGetPackedG32(c0) - SkGetPackedG32(c1));
129 int db = SkAbs32(SkGetPackedB32(c0) - SkGetPackedB32(c1));
  /packages/apps/Gallery2/jni/filters/
kmeans.h 189 T * c1 = initialPicks; local
194 ret = calculateNewCentroids<T, N>(k, values, len, dimension, stride, c1, c2);
195 temp = c1;
196 c1 = c2;
202 set<T, T>(finalCentroids, c1, dimension);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
base64.py 149 # c1 and c2 are 16 bits wide, c3 is 8 bits wide. The intent of this
151 # leftover bit of c1 and tack it onto c2. Then we take the 2 leftover
154 c1, c2, c3 = struct.unpack('!HHB', s[i*5:(i+1)*5])
155 c2 += (c1 & 1) << 16 # 17 bits wide
157 parts.extend([_b32tab[c1 >> 11], # bits 1 - 5
158 _b32tab[(c1 >> 6) & 0x1f], # bits 6 - 10
159 _b32tab[(c1 >> 1) & 0x1f], # bits 11 - 15
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
base64.py 149 # c1 and c2 are 16 bits wide, c3 is 8 bits wide. The intent of this
151 # leftover bit of c1 and tack it onto c2. Then we take the 2 leftover
154 c1, c2, c3 = struct.unpack('!HHB', s[i*5:(i+1)*5])
155 c2 += (c1 & 1) << 16 # 17 bits wide
157 parts.extend([_b32tab[c1 >> 11], # bits 1 - 5
158 _b32tab[(c1 >> 6) & 0x1f], # bits 6 - 10
159 _b32tab[(c1 >> 1) & 0x1f], # bits 11 - 15
  /external/opencv/cv/src/
cvpyrsegmentation.cpp 1042 float c0, c1, c2, c3, c4; local
1225 float c1, c2, c3, c4; local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
CameraTest.java 131 Canvas c1 = new Canvas(); local
132 mCamera.applyToCanvas(c1);
139 assertTrue(c1.getMatrix().equals(c2.getMatrix()));

Completed in 1309 milliseconds

<<11121314151617181920>>