Home
last modified time | relevance | path

Searched refs:blue (Results 51 – 75 of 109) sorted by relevance

12345

/PHP-7.0/ext/gd/
H A Dgd.c224 ZEND_ARG_INFO(0, blue)
232 ZEND_ARG_INFO(0, blue)
240 ZEND_ARG_INFO(0, blue)
248 ZEND_ARG_INFO(0, blue)
418 ZEND_ARG_INFO(0, blue)
436 ZEND_ARG_INFO(0, blue)
443 ZEND_ARG_INFO(0, blue)
455 ZEND_ARG_INFO(0, blue)
462 ZEND_ARG_INFO(0, blue)
470 ZEND_ARG_INFO(0, blue)
[all …]
/PHP-7.0/ext/standard/tests/array/
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_uassoc_variation14.phpt14 $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red");
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_uassoc_variation11.phpt13 $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red");
H A Darray_intersect_uassoc_variation10.phpt13 $array1 = array("a" => "green", "c" => "blue", "red");
H A Darray_diff_ukey_variation10.phpt13 $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red");
H A Darray_intersect_uassoc_variation9.phpt13 $array1 = array("a" => "green", "b" => "brown", "c" => "blue", "red");
/PHP-7.0/ext/gd/tests/
H A Dbug36697.phpt24 echo $colors['red'] . ' ' . $colors['green'] . ' ' . $colors['blue'];
H A Dbug67325.phpt21 if ($components['red'] === 255 && $components['green'] === 255 && $components['blue'] === 255) {
H A Dimagecolorset_basic.phpt23 // Set the backgrund to be blue
H A Dlibgd00100.phpt16 $blue = imagecolorallocatealpha($im, 0, 0, 255, 10);
78 imagefilledpolygon($im, $points, 5, $blue);
H A Dbug67447.phpt37 ["blue"]=>
H A Dimagecolorallocate_basic.phpt14 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
H A Dimagecolorallocate_variation2.phpt15 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
24 $blue = 10;
105 var_dump( imagecolorallocate($im, $value, $green, $blue) );
H A Dimagecolorallocate_variation3.phpt14 /* Prototype : imagecolorallocate(resource im, int red, int green, int blue)
23 $blue = 10;
104 var_dump( imagecolorallocate($im, $red, $value, $blue) );
H A Dbug53504.phpt17 $blue = imagecolorallocate($g, 0, 0, 255);
81 $test['y'] - $width * sin(deg2rad($test['angle'])), $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)
21 $blue = 10;
111 var_dump( imagecolorallocate($value, $red, $green, $blue) );
/PHP-7.0/ext/soap/tests/soap12/
H A DT46.phpt23 <item xsi:type="xsd:string">blue</item>
35 …string"><item xsi:type="xsd:string">red</item><item xsi:type="xsd:string">blue</item><item xsi:typ…
/PHP-7.0/ext/gd/libgd/
H A Dgd_color.c57 im2->blue[color] = *(bp++) / count; in gdImageColorMatch()
H A Dgd.c165 im->blue[i] = 0; in gdImageCreate()
286 bd = im->blue[i] - b; in gdImageColorClosestAlpha()
508 im->blue[ct] = b; in gdImageColorAllocateAlpha()
558 bd = (long) (im->blue[c] - b); in gdImageColorResolveAlpha()
583 im->blue[op] = b; in gdImageColorResolveAlpha()
642 to->blue[i] = from->blue[i]; in gdImagePaletteCopy()
2554 blue /= spixels; in gdImageCopyResampled()
2564 blue /= alpha_sum; in gdImageCopyResampled()
2573 if (blue > 255.0f) { in gdImageCopyResampled()
2574 blue = 255.0f; in gdImageCopyResampled()
[all …]
H A Dgd_interpolation.c629 register int alpha, red, green, blue; in _color_blend() local
640 blue = (gdTrueColorGetBlue(src) * src_weight in _color_blend()
643 return ((alpha << 24) + (red << 16) + (green << 8) + blue); in _color_blend()
788 b = (int)(m1*im->blue[(c1)] + m2*im->blue[(c2)] + m3*im->blue[(c3)] + m4*im->blue[(c4)]); in getPixelInterpolateWeight()
1511 unsigned char red, green, blue, alpha = 0; in gdImageScaleBicubicFixed() local
1673 blue = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_blue, f_gamma)), 0, 255); in gdImageScaleBicubicFixed()
1676 *(dst_row + dst_offset_x) = gdTrueColorAlpha(red, green, blue, alpha); in gdImageScaleBicubicFixed()
1964 const unsigned char blue = (unsigned char) CLAMP(gd_fxtoi(f_blue), 0, 255); in gdImageRotateBilinear() local
2028 unsigned char red, green, blue, alpha; in gdImageRotateBicubicFixed() local
2230 blue = (unsigned char) CLAMP(gd_fxtoi(gd_mulfx(f_blue, f_gama)), 0, 255); in gdImageRotateBicubicFixed()
[all …]
H A Dgd_gd.c75 if (!gdGetByte(&im->blue[i], in)) { in _gdGetColors()
225 gdPutC((unsigned char) im->blue[i], out); in _gdPutColors()

Completed in 111 milliseconds

12345