Home
last modified time | relevance | path

Searched refs:y (Results 151 – 175 of 476) sorted by last modified time

12345678910>>...20

/PHP-7.4/ext/intl/tests/
H A Ddateformat_formatObject_datetime.phpt18 echo IntlDateFormatter::formatObject($dt, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
H A Ddateformat_formatObject_datetime_variant2.phpt18 echo IntlDateFormatter::formatObject($dt, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
H A Ddateformat_formatObject_datetime_variant3.phpt19 echo IntlDateFormatter::formatObject($dt, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
H A Ddateformat_formatObject_datetime_variant4.phpt19 echo IntlDateFormatter::formatObject($dt, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
H A Ddateformat_formatObject_datetime_variant5.phpt18 echo IntlDateFormatter::formatObject($dt, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
H A Dbug69374.phpt10 $pattern1 = '\'tháng\' MM, y'; // yMM format for Vietnamese
11 $pattern2 = 'y년 MMM'; // yMM format for Korean
/PHP-7.4/ext/hash/
H A Dhash_md.c229 #define F(x, y, z) (((x) & (y)) | ((~x) & (z))) argument
230 #define G(x, y, z) (((x) & (z)) | ((y) & (~z))) argument
231 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
232 #define I(x, y, z) ((y) ^ ((x) | (~z))) argument
446 #define MD4_F(x,y,z) ((z) ^ ((x) & ((y) ^ (z)))) argument
447 #define MD4_G(x,y,z) (((x) & ((y) | (z))) | ((y) & (z))) argument
448 #define MD4_H(x,y,z) ((x) ^ (y) ^ (z)) argument
H A Dhash_ripemd.c142 #define F0(x,y,z) ((x) ^ (y) ^ (z)) argument
143 #define F1(x,y,z) (((x) & (y)) | ((~(x)) & (z))) argument
144 #define F2(x,y,z) (((x) | (~(y))) ^ (z)) argument
145 #define F3(x,y,z) (((x) & (z)) | ((y) & (~(z)))) argument
146 #define F4(x,y,z) ((x) ^ ((y) | (~(z)))) argument
H A Dhash_sha.c161 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
162 #define G(x, y, z) ((x) ^ (y) ^ (z)) argument
163 #define H(x, y, z) (((x) & (y)) | ((z) & ((x) | (y)))) argument
164 #define I(x, y, z) ((x) ^ (y) ^ (z)) argument
434 #define SHA256_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
436 #define SHA256_F1(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument
692 #define SHA512_F0(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
694 #define SHA512_F1(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument
H A Dhash_sha3.c40 return x + (5 * y); in idx()
67 # define readLane(x, y) load64(ctx->state+sizeof(uint64_t)*idx(x, y)) argument
69 # define XORLane(x, y, v) xor64(ctx->state+sizeof(uint64_t)*idx(x, y), v) argument
71 # define readLane(x, y) (((uint64_t*)ctx->state)[idx(x,y)]) argument
72 # define writeLane(x, y, v) (((uint64_t*)ctx->state)[idx(x,y)] = v) argument
73 # define XORLane(x, y, v) (((uint64_t*)ctx->state)[idx(x,y)] ^= v) argument
97 unsigned char x, y; in permute() local
104 for (y = 0; y < 5; ++y) { in permute()
117 x = y; in permute()
118 y = Y; in permute()
[all …]
/PHP-7.4/ext/gd/tests/
H A Dlibgd00100.phpt82 $y = 150;
83 $diamond = array($x-$d, $y, $x, $y+$d, $x+$d, $y, $x, $y-$d);
87 $y = 225;
88 $diamond = array($x-$d, $y, $x, $y+$d, $x+$d, $y, $x, $y-$d);
92 $y = 255;
93 $diamond = array($x-$d, $y, $x, $y+$d, $x+$d, $y, $x, $y-$d);
H A Dlines.phpt36 for ($y=1; $y<5; $y++) {
37 $p3 = $p3 && (imagecolorat($im, 0,$y)==0x00ff00);
56 for ($y=1; $y<5; $y++) {
57 $p3 = $p3 && (imagecolorat($im, $x,$y)==0x00ff00);
71 for ($y=0; $y<6; $y++) {
72 $p3 = $p3 && (imagecolorat($im, $x,$y)!=0x00ff00);
84 for ($y=0; $y<6; $y++) {
85 $p3 = $p3 && (imagecolorat($im, $x,$y)!=0x00ff00);
97 for ($y=0; $y<5; $y++) {
98 $p3 = $p3 && (imagecolorat($im, $x,$y)==0x00ff00);
H A Dbug73155.phpt19 printf("y chunk count: %d\n", $header['y_count']);
26 y chunk count: 1
H A Dbug73281.phpt18 list($x, $y) = $coordinate;
19 printf("%3d, %3d: %x\n", $x, $y, imagecolorat($dst, $x, $y));
28 list($x, $y) = $coordinate;
29 printf("%3d, %3d: %x\n", $x, $y, imagecolorat($dst, $x, $y));
H A Dimagegammacorrect_variation2.phpt39 function draw_cell($im, $x, $y)
42 $y1 = 120 * $y;
45 $color = cell_color($im, $x, $y);
49 function cell_color($im, $x, $y)
52 switch ($y) {
H A Dfunc.inc98 for ($y = 0; $y < $exp_y; $y++) {
100 $exp_c = imagecolorat($expected, $x, $y);
101 $act_c = imagecolorat($actual, $x, $y);
H A Dbug43073.phpt36 $y = 0;
40 $bbox = imagettftext($g, 24, $angle, 400+$x, 400+$y, $black, $font, 'ABCDEF');
51 $temp = $cos_t * $x + $sin_t * $y;
52 $y = $cos_t * $y - $sin_t * $x;
H A Dbug53504.phpt21 …['fontSize' => 50, 'angle' => 0, 'x' => 20, 'y' => 70, 'text' => 'AV Teg', 'exp' => [2,15, 208,15,…
29 …['fontSize' => 100, 'angle' => 0, 'x' => 350, 'y' => 220, 'text' => '-', 'exp' => [7,-37, 51,-37, …
30 …['fontSize' => 100, 'angle' => 0, 'x' => 430, 'y' => 220, 'text' => ',', 'exp' => [7,15, 21,15, 21…
31 …['fontSize' => 100, 'angle' => 0, 'x' => 510, 'y' => 220, 'text' => '.', 'exp' => [7,1, 21,1, 21,-…
32 …['fontSize' => 100, 'angle' => 0, 'x' => 590, 'y' => 220, 'text' => '|', 'exp' => [8,0, 17,0, 17,-…
33 …['fontSize' => 100, 'angle' => 0, 'x' => 670, 'y' => 220, 'text' => 'g', 'exp' => [5,29, 60,29, 60…
66 $test['x'], $test['y'], $black, $font, $test['text']);
68 // check if both bboxes match when adding x/y offset:
71 …if ($bbox[$i + 1] + $test['y'] !== $bboxDrawn[$i + 1]) echo "imageftbbox and imagefttext differ!\n…
79 imageline($g, $test['x'], $test['y'],
[all …]
H A Dbug65148.phpt55 [y] => 23
61 [y] => 23
67 [y] => 23
73 [y] => 23
79 [y] => 23
85 [y] => 23
91 [y] => 23
97 [y] => 23
103 [y] => 23
109 [y] => 23
[all …]
H A Dbug66356.phpt12 var_dump(imagecrop($img, array("x" => "a", "y" => 0, "width" => 10, "height" => 10)));
14 $arr = array("x" => "a", "y" => "12b", "width" => 10, "height" => 10);
19 var_dump(imagecrop($img, array("x" => 0, "y" => 0, "width" => -1, "height" => 10)));
22 var_dump(imagecrop($img, array("x" => -20, "y" => -20, "width" => 10, "height" => 10)));
25 var_dump(imagecrop($img, array("x" => 0x7fffff00, "y" => 0, "width" => 10, "height" => 10)));
28 var_dump(imagecrop($img, array("x" => 0, "y" => 0, "width" => 65535, "height" => 65535)));
36 [y] => 12b
/PHP-7.4/ext/gd/libgd/
H A Dgd_xbm.c46 int bit, x = 0, y = 0; in gdImageCreateFromXbm() local
145 gdImageSetPixel(im, x++, y, (b & bit) ? 1 : 0); in gdImageCreateFromXbm()
148 y++; in gdImageCreateFromXbm()
149 if (y == im->sy) { in gdImageCreateFromXbm()
181 int x, y, c, b, sx, sy, p; in gdImageXbmCtx() local
213 for (y = 0; y < sy; y++) { in gdImageXbmCtx()
215 if (gdImageGetPixel(image, x, y) == fg) { in gdImageXbmCtx()
/PHP-7.4/ext/date/tests/
H A Dgmstrftime_variation5.phpt21 'Year as decimal number without a century' => "%y",
H A Didate_variation4.phpt25 'Year (1 or 2 digits)' => 'y',
H A Didate_variation6.phpt15 $format = 'y';
H A Dstrftime_variation5.phpt20 'Year as decimal number without a century' => "%y",

Completed in 59 milliseconds

12345678910>>...20