Home
last modified time | relevance | path

Searched refs:c2 (Results 1 – 25 of 157) sorted by path

1234567

/PHP-7.4/Zend/tests/
H A Dbug30702.phpt13 public $c2=bar::C2;
29 ["c2"]=>
/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_052.phpt13 public ?Foo\C $c2;
32 ["c2"]=>
/PHP-7.4/Zend/
H A Dzend_operators.c2756 int c1, c2; in zend_binary_strcasecmp() local
2766 if (c1 != c2) { in zend_binary_strcasecmp()
2767 return c1 - c2; in zend_binary_strcasecmp()
2778 int c1, c2; in zend_binary_strncasecmp() local
2787 if (c1 != c2) { in zend_binary_strncasecmp()
2788 return c1 - c2; in zend_binary_strncasecmp()
2799 int c1, c2; in zend_binary_strcasecmp_l() local
2809 if (c1 != c2) { in zend_binary_strcasecmp_l()
2810 return c1 - c2; in zend_binary_strcasecmp_l()
2821 int c1, c2; in zend_binary_strncasecmp_l() local
[all …]
/PHP-7.4/build/
H A Dconfig.guess835 else echo c2-convex-bsd
/PHP-7.4/ext/ctype/tests/
H A Dctype_alnum_basic.phpt17 $c2 = ' \t*@';
20 var_dump(ctype_alnum($c2));
H A Dctype_alpha_basic.phpt17 $c2 = "Hello, World!";
20 var_dump(ctype_alpha($c2));
H A Dctype_cntrl_basic.phpt17 $c2 = "Hello, World!\n";
20 var_dump(ctype_cntrl($c2));
H A Dctype_digit_basic.phpt17 $c2 = 'abc123';
20 var_dump(ctype_digit($c2));
H A Dctype_graph_basic.phpt17 $c2 = "Hello, world!\n";
20 var_dump(ctype_graph($c2));
H A Dctype_lower_basic.phpt17 $c2 = "Hello, world!\n";
20 var_dump(ctype_lower($c2));
H A Dctype_print_basic.phpt17 $c2 = null;
20 var_dump(ctype_print($c2));
H A Dctype_punct_basic.phpt18 $c2 = 'hello, world!';
21 var_dump(ctype_punct($c2));
H A Dctype_space_basic.phpt19 $c2 = "Hello, world!\n";
20 var_dump(ctype_space($c2));
H A Dctype_upper_basic.phpt17 $c2 = "Hello, World!\n";
20 var_dump(ctype_upper($c2));
H A Dctype_xdigit_basic.phpt16 $c2 = 'face 034';
19 var_dump(ctype_xdigit($c2));
/PHP-7.4/ext/curl/tests/
H A Dbug79199.phpt12 $c2 = curl_copy_handle($c1);
13 curl_close($c2);
/PHP-7.4/ext/date/lib/
H A Dtimelib.c237 int c1, c2; in timelib_strcasecmp() local
246 c2 = timelib_tolower(*(unsigned char *)s2++); in timelib_strcasecmp()
247 if (c1 != c2) { in timelib_strcasecmp()
248 return c1 - c2; in timelib_strcasecmp()
260 int c1, c2; in timelib_strncasecmp() local
268 c2 = timelib_tolower(*(unsigned char *)s2++); in timelib_strncasecmp()
269 if (c1 != c2) { in timelib_strncasecmp()
270 return c1 - c2; in timelib_strncasecmp()
/PHP-7.4/ext/dom/tests/
H A Ddom001.phpt204 <row><entry>a2</entry><entry>c2</entry></row>
265 <row><entry>a2</entry><entry>c2</entry></row>
H A Ddom_test.inc15 <row><entry>a2</entry><entry>c2</entry></row>
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic7982 >88 belong &0x00010000 c2
8002 >88 belong &0x00010000 c2
H A Dmagic私はガラスを食べられます7982 >88 belong &0x00010000 c2
8002 >88 belong &0x00010000 c2
/PHP-7.4/ext/gd/libgd/
H A Dgd_crop.c123 int c2 = gdImageGetPixel(im, x, y); in gdImageCropAuto() local
124 match = (color == c2); in gdImageCropAuto()
H A Dgd_interpolation.c705 …const int c2 = im->trueColor == 1 ? getPixelOverflowTC(im, sx - 1, sy, bgColor) : getPixelOver… in getPixelInterpolateWeight() local
715 …r = (int)(m1*gdTrueColorGetRed(c1) + m2*gdTrueColorGetRed(c2) + m3*gdTrueColorGetRed(c3) + m… in getPixelInterpolateWeight()
716 …g = (int)(m1*gdTrueColorGetGreen(c1) + m2*gdTrueColorGetGreen(c2) + m3*gdTrueColorGetGreen(c3) + m… in getPixelInterpolateWeight()
717 …b = (int)(m1*gdTrueColorGetBlue(c1) + m2*gdTrueColorGetBlue(c2) + m3*gdTrueColorGetBlue(c3) + m… in getPixelInterpolateWeight()
718 …a = (int)(m1*gdTrueColorGetAlpha(c1) + m2*gdTrueColorGetAlpha(c2) + m3*gdTrueColorGetAlpha(c3) + m… in getPixelInterpolateWeight()
720 r = (int)(m1*im->red[(c1)] + m2*im->red[(c2)] + m3*im->red[(c3)] + m4*im->red[(c4)]); in getPixelInterpolateWeight()
721 g = (int)(m1*im->green[(c1)] + m2*im->green[(c2)] + m3*im->green[(c3)] + m4*im->green[(c4)]); in getPixelInterpolateWeight()
722 b = (int)(m1*im->blue[(c1)] + m2*im->blue[(c2)] + m3*im->blue[(c3)] + m4*im->blue[(c4)]); in getPixelInterpolateWeight()
723 a = (int)(m1*im->alpha[(c1)] + m2*im->alpha[(c2)] + m3*im->alpha[(c3)] + m4*im->alpha[(c4)]); in getPixelInterpolateWeight()
H A Dgd_topal.c422 int c0, c1, c2; in update_box() local
439 for (c2 = c2min; c2 <= c2max; c2++) in update_box()
452 for (c2 = c2min; c2 <= c2max; c2++) in update_box()
465 for (c2 = c2min; c2 <= c2max; c2++) in update_box()
478 for (c2 = c2min; c2 <= c2max; c2++) in update_box()
487 for (c2 = c2min; c2 <= c2max; c2++) in update_box()
500 for (c2 = c2max; c2 >= c2min; c2--) in update_box()
532 for (c2 = c2min; c2 <= c2max; c2++, histp++) in update_box()
601 cmax = c2; in median_cut()
651 int c0, c1, c2; in compute_color() local
[all …]
H A Dgdkanji.c231 register unsigned char c2 = *p2; in SJIStoJIS() local
232 register int adjust = c2 < 159; in SJIStoJIS()
234 register int cellOffset = adjust ? (31 + (c2 > 127)) : 126; in SJIStoJIS()

Completed in 186 milliseconds

1234567