Home
last modified time | relevance | path

Searched refs:Y (Results 176 – 200 of 273) sorted by path

1234567891011

/PHP-5.5/ext/gd/libgd/
H A Dwebpimg.c326 void YUV420toRGBA(uint8* Y, in YUV420toRGBA() argument
346 YUV420toRGBLine(Y + y * y_stride, in YUV420toRGBA()
354 void gd_YUV420toRGBA(uint8* Y, in gd_YUV420toRGBA() argument
378 YUV420toRGBLine(Y + y * y_stride, in gd_YUV420toRGBA()
536 uint8* Y, in gd_RGBAToYUV420() argument
566 Y + 2 * y * y_stride, in gd_RGBAToYUV420()
567 Y + (2 * y + 1) * y_stride, in gd_RGBAToYUV420()
575 Y + (y_height - 1) * y_stride, in gd_RGBAToYUV420()
599 uint8* Y, in RGBAToYUV420() argument
680 if (!p_out || !Y || !U || !V in VPXEncode()
[all …]
H A Dwebpimg.h99 WebPResult WebPEncode(const uint8* Y,
126 void YUV420toRGBA(uint8* Y,
148 uint8* Y,
155 void AdjustColorspace(uint8* Y, uint8* U, uint8* V, int width, int height);
158 void AdjustColorspaceBack(uint8* Y, uint8* U, uint8* V, int width, int height);
/PHP-5.5/ext/interbase/tests/
H A D003.phpt34 ini_set('ibase.timestampformat',"%m/%d/%Y %H:%M:%S");
H A D006.phpt35 ini_set('ibase.timestampformat',"%m/%d/%Y %H:%M:%S");
H A D007.phpt29 ini_set('ibase.timestampformat',"%m/%d/%Y %H:%M:%S");
H A Dinterbase.inc69 /* M/D/Y H:M:S */
/PHP-5.5/ext/intl/tests/
H A Dbug58756_MessageFormatter.phpt21 echo "date: " . date('l, F j, Y g:i:s A T', $time) . "\n";
H A Dbug58756_MessageFormatter_variant2.phpt21 echo "date: " . date('l, F j, Y g:i:s A T', $time) . "\n";
/PHP-5.5/ext/mysql/tests/
H A Dmysql_fetch_array.phpt202 func_mysql_fetch_array($link, $engine, "DATE", @date('Y-m-d'), @date('Y-m-d'), 410);
203 func_mysql_fetch_array($link, $engine, "DATE NOT NULL", @date('Y-m-d'), @date('Y-m-d'), 420);
206 func_mysql_fetch_array($link, $engine, "DATETIME", @date('Y-m-d H:i:s'), @date('Y-m-d H:i:s'), 440);
207 func_mysql_fetch_array($link, $engine, "DATETIME NOT NULL", @date('Y-m-d H:i:s'), @date('Y-m-d H:i:…
210 func_mysql_fetch_array($link, $engine, "TIMESTAMP", @date('Y-m-d H:i:s'), @date('Y-m-d H:i:s'), 470…
216 func_mysql_fetch_array($link, $engine, "YEAR", @date('Y'), @date('Y'), 510);
217 func_mysql_fetch_array($link, $engine, "YEAR NOT NULL", @date('Y'), @date('Y'), 520);
H A Dmysql_fetch_field.phpt62 'DATE' => array(@date('Y-m-d'), 'date'),
63 'DATETIME' => array(@date('Y-m-d H:i:s'), 'datetime'),
64 'TIMESTAMP' => array(@date('Y-m-d H:i:s'), 'timestamp'),
66 'YEAR' => array(@date('Y'), 'year'),
H A Dmysql_field_flags.phpt81 array('label1', sprintf("'%s'", @date("Y-m-d H:i:s"))),
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_fetch_all.phpt221 func_mysqli_fetch_all($link, $engine, "DATE", @date('Y-m-d'), @date('Y-m-d'), 410);
222 func_mysqli_fetch_all($link, $engine, "DATE NOT NULL", @date('Y-m-d'), @date('Y-m-d'), 420);
225 func_mysqli_fetch_all($link, $engine, "DATETIME", @date('Y-m-d H:i:s'), @date('Y-m-d H:i:s'), 440);
226 …func_mysqli_fetch_all($link, $engine, "DATETIME NOT NULL", @date('Y-m-d H:i:s'), @date('Y-m-d H:i:…
229 …func_mysqli_fetch_all($link, $engine, "TIMESTAMP", @date('Y-m-d H:i:s'), @date('Y-m-d H:i:s'), 470…
235 func_mysqli_fetch_all($link, $engine, "YEAR", @date('Y'), @date('Y'), 510);
236 func_mysqli_fetch_all($link, $engine, "YEAR NOT NULL", @date('Y'), @date('Y'), 520);
H A Dmysqli_fetch_all_oo.phpt220 $date = @date('Y-m-d');
225 $datetime = @date('Y-m-d H:i:s');
237 func_mysqli_fetch_all_oo($link, $engine, "YEAR", @date('Y'), @date('Y'), 510);
238 func_mysqli_fetch_all_oo($link, $engine, "YEAR NOT NULL", @date('Y'), @date('Y'), 520);
H A Dmysqli_fetch_array.phpt210 $date = @date('Y-m-d');
215 $date = @date('Y-m-d H:i:s');
226 func_mysqli_fetch_array($link, $engine, "YEAR", @date('Y'), @date('Y'), 510);
227 func_mysqli_fetch_array($link, $engine, "YEAR NOT NULL", @date('Y'), @date('Y'), 520);
H A Dmysqli_fetch_array_oo.phpt196 $date = @date('Y-m-d');
201 $date = @date('Y-m-d H:i:s');
210 func_mysqli_fetch_array($mysqli, $engine, "YEAR", @date('Y'), @date('Y'), 510);
211 func_mysqli_fetch_array($mysqli, $engine, "YEAR NOT NULL", @date('Y'), @date('Y'), 520);
H A Dmysqli_stmt_bind_param.phpt243 func_mysqli_stmt_bind_datatype($link, $engine, "s", "DATE", @date('Y-m-d'), 420);
244 func_mysqli_stmt_bind_datatype($link, $engine, "s", "DATE NOT NULL", @date('Y-m-d'), 430);
247 func_mysqli_stmt_bind_datatype($link, $engine, "s", "DATETIME", @date('Y-m-d H:i:s'), 450);
248 …func_mysqli_stmt_bind_datatype($link, $engine, "s", "DATETIME NOT NULL", @date('Y-m-d H:i:s'), 460…
251 func_mysqli_stmt_bind_datatype($link, $engine, "s", "TIMESTAMP", @date('Y-m-d H:i:s'), 480);
257 func_mysqli_stmt_bind_datatype($link, $engine, "s", "YEAR", @date('Y'), 520);
258 func_mysqli_stmt_bind_datatype($link, $engine, "s", "YEAR NOT NULL", @date('Y'), 530);
H A Dmysqli_stmt_bind_result.phpt226 func_mysqli_stmt_bind_result($link, $engine, "s", "DATE", @date('Y-m-d'), 840);
227 func_mysqli_stmt_bind_result($link, $engine, "s", "DATE NOT NULL", @date('Y-m-d'), 860);
230 func_mysqli_stmt_bind_result($link, $engine, "s", "DATETIME", @date('Y-m-d H:i:s'), 900);
231 func_mysqli_stmt_bind_result($link, $engine, "s", "DATETIME NOT NULL", @date('Y-m-d H:i:s'), 920);
234 func_mysqli_stmt_bind_result($link, $engine, "s", "TIMESTAMP", @date('Y-m-d H:i:s'), 960);
240 $tmp = intval(@date('Y'));
H A Dmysqli_stmt_get_result_types.phpt184 func_mysqli_stmt_get_result($link, $engine, "s", "DATE", @date('Y-m-d'), 840);
185 func_mysqli_stmt_get_result($link, $engine, "s", "DATE NOT NULL", @date('Y-m-d'), 860);
188 func_mysqli_stmt_get_result($link, $engine, "s", "DATETIME", @date('Y-m-d H:i:s'), 900);
189 func_mysqli_stmt_get_result($link, $engine, "s", "DATETIME NOT NULL", @date('Y-m-d H:i:s'), 920);
192 func_mysqli_stmt_get_result($link, $engine, "s", "TIMESTAMP", @date('Y-m-d H:i:s'), 960);
198 $tmp = intval(@date('Y'));
/PHP-5.5/ext/oci8/tests/
H A Dxmltype_01.phpt57 $sx->Nice = 'Y';
107 <Nice>Y</Nice>
/PHP-5.5/ext/pcre/pcrelib/
H A DChangeLog1948 options. The new /Y option in pcretest sets this option when calling
2521 ^X(?3)(a)(?|(b)|(q))(Y) is an example.
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt3392 (*MARK:A)(X|Y)
7373 re> /X(*MARK:A)Y|X(*MARK:B)Z/K
7394 re> /X(*MARK:A)Y|X(*MARK:B)Z/K
7454 data> xyzabc\Y
7460 ond set of data, the escape sequence \Y is interpreted by the pcretest
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput13744 Xa b c d Y
3872 /(?:(?(1)\1a|b)(X|Y))+/
4286 /(?(?=c)c|d)++Y/
4289 /(?(?=c)c|d)*+Y/
4339 /\h*X\h?\H+Y\H?Z/
4397 /^X(?5)(a)(?|(b)|(q))(c)(d)(Y)/
5130 /A(*:A)B|XX(*:B)Y/K
5167 /A(*:A)B|X(*:A)Y/K
5198 /(?=a(*MARK:A)b)..(*:Y)x/K
5208 /(?=a(*PRUNE:A)b)..(*:Y)x/K
[all …]
H A Dtestinput10552 Y
H A Dtestinput1812 X\x{11234}Y
27 X\x{11234}Y
35 X\x{11234}Y
H A Dtestinput22141 Y
2158 Y!
2185 XXXX Y
2187 /\H+ Y/BZ
2545 abcxyz\Y
2548 abc\Y
2550 abcxypqr\Y
2677 /(Y)X\1{2,4}b/
2684 /(Y)X\1{2,4}?b/
2691 /(Y)X\1{2,4}+b/
[all …]

Completed in 154 milliseconds

1234567891011