Home
last modified time | relevance | path

Searched refs:green (Results 51 – 75 of 104) sorted by relevance

12345

/PHP-5.5/ext/standard/tests/array/
H A Darray_unshift_variation6.phpt31 array('a' => 'green', 'red', 'brown', 33, 88, 'orange', 'item' => 'ball')
107 string(5) "green"
155 string(5) "green"
H A Darray_diff_ukey_error.phpt13 $array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
14 $array2 = array('green' => 5, 'blue' => 6, 'yellow' => 7, 'cyan' => 8);
H A Darray_diff_key_error.phpt13 $array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
H A Darray_intersect_key_error.phpt13 $array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
H A Darray_intersect_ukey_variation4.phpt13 $array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
14 $array2 = array('green' => 5, 'blue' => 6, 'yellow' => 7, 'cyan' => 8);
15 $array4 = array('green' => 5, 'cyan' => 8);
H A Darray_diff_key_variation3.phpt13 $array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
14 $array2 = array('green' => 5, 'blue' => 6, 'yellow' => 7, 'cyan' => 8);
H A Darray_diff_uassoc_variation4.phpt14 $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red");
15 $array2 = array("a" => "green", "yellow", "red");
H A Darray_intersect_key_variation3.phpt13 $array1 = array('blue' => 1, 'red' => 2, 'green' => 3, 'purple' => 4);
14 $array2 = array('green' => 5, 'blue' => 6, 'yellow' => 7, 'cyan' => 8);
H A Darray_intersect_uassoc_variation3.phpt13 $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red");
14 $array2 = array("a" => "green", "yellow", "red");
/PHP-5.5/ext/gd/tests/
H A Dlibgd00191.phpt16 if ($arr['red'] == 255 && $arr['green'] == 255 && $arr['blue'] == 255) {
H A Dbug36697.phpt24 echo $colors['red'] . ' ' . $colors['green'] . ' ' . $colors['blue'];
H A Dlibgd00100.phpt15 $green = imagecolorallocatealpha($im, 0, 255, 0, 10);
84 imagefilledpolygon($im, $diamond, 4, $green);
H A Dimagecolorallocate_basic.phpt14 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
H A Dimagecolorallocate_variation4.phpt14 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
22 $green = 10;
103 var_dump( imagecolorallocate($im, $red, $green, $value) );
H A Dimagecolorallocate_variation2.phpt14 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
22 $green = 10;
104 var_dump( imagecolorallocate($im, $value, $green, $blue) );
H A Dimagecolorallocate_variation6.phpt14 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
H A Dcreatefromstring.phpt44 if ($c['red'] != 255 || $c['green'] != 0 || $c['blue'] != 0) {
H A Dimagecolorallocate_variation1.phpt11 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
20 $green = 10;
111 var_dump( imagecolorallocate($value, $red, $green, $blue) );
H A Dcopyresized.phpt15 return ($colors['red'] << 16) + ($colors['green'] << 8) + ($colors['blue']);
/PHP-5.5/ext/gd/
H A Dgd.c218 ZEND_ARG_INFO(0, green)
226 ZEND_ARG_INFO(0, green)
234 ZEND_ARG_INFO(0, green)
242 ZEND_ARG_INFO(0, green)
409 ZEND_ARG_INFO(0, green)
427 ZEND_ARG_INFO(0, green)
434 ZEND_ARG_INFO(0, green)
446 ZEND_ARG_INFO(0, green)
453 ZEND_ARG_INFO(0, green)
461 ZEND_ARG_INFO(0, green)
[all …]
/PHP-5.5/ext/soap/tests/soap12/
H A DT46.phpt24 <item xsi:type="xsd:string">green</item>
35 …</item><item xsi:type="xsd:string">blue</item><item xsi:type="xsd:string">green</item></varArray><…
/PHP-5.5/ext/gd/libgd/
H A Dgd_color.c56 im2->green[color] = *(bp++) / count; in gdImageColorMatch()
H A Dgd.c166 im->green[i] = 0; in gdImageCreate()
287 gd = im->green[i] - g; in gdImageColorClosestAlpha()
509 im->green[ct] = g; in gdImageColorAllocateAlpha()
559 gd = (long) (im->green[c] - g); in gdImageColorResolveAlpha()
584 im->green[op] = g; in gdImageColorResolveAlpha()
645 to->green[i] = from->green[i]; in gdImagePaletteCopy()
2537 green /= spixels; in gdImageCopyResampled()
2547 green /= alpha_sum; in gdImageCopyResampled()
2554 if (green > 255.0f) { in gdImageCopyResampled()
2555 green = 255.0f; in gdImageCopyResampled()
[all …]
H A Dgd_interpolation.c617 register int alpha, red, green, blue; in _color_blend() local
626 green = (gdTrueColorGetGreen(src) * src_weight in _color_blend()
631 return ((alpha << 24) + (red << 16) + (green << 8) + blue); in _color_blend()
775 g = (int)(m1*im->green[(c1)] + m2*im->green[(c2)] + m3*im->green[(c3)] + m4*im->green[(c4)]); in getPixelInterpolateWeight()
1473 unsigned char red, green, blue, alpha = 0; in gdImageScaleBicubicFixed() local
1649 green = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_green, f_gamma)), 0, 255); in gdImageScaleBicubicFixed()
1653 *(dst_row + dst_offset_x) = gdTrueColorAlpha(red, green, blue, alpha); in gdImageScaleBicubicFixed()
1902 const unsigned char green = (unsigned char) CLAMP(gd_fxtoi(f_green), 0, 255); in gdImageRotateBilinear() local
1964 unsigned char red, green, blue, alpha; in gdImageRotateBicubicFixed() local
2170 green = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_green, f_gama)), 0, 255); in gdImageRotateBicubicFixed()
[all …]
H A Dgd_gd.c72 if (!gdGetByte(&im->green[i], in)) { in _gdGetColors()
224 gdPutC((unsigned char) im->green[i], out); in _gdPutColors()

Completed in 53 milliseconds

12345