Home
last modified time | relevance | path

Searched refs:w (Results 101 – 125 of 950) sorted by relevance

12345678910>>...38

/PHP-7.0/ext/mbstring/libmbfl/filters/
H A Dmbfilter_cp5022x.c231 int c1, s, w; in mbfl_filt_conv_jis_ms_wchar() local
285 w = s - 94*94 + 0xe000; in mbfl_filt_conv_jis_ms_wchar()
287 w = 0; in mbfl_filt_conv_jis_ms_wchar()
289 if (w <= 0) { in mbfl_filt_conv_jis_ms_wchar()
290 w = (c1 << 8) | c; in mbfl_filt_conv_jis_ms_wchar()
291 w &= MBFL_WCSPLANE_MASK; in mbfl_filt_conv_jis_ms_wchar()
298 w = 0; in mbfl_filt_conv_jis_ms_wchar()
300 if (w <= 0) { in mbfl_filt_conv_jis_ms_wchar()
301 w = (c1 << 8) | c; in mbfl_filt_conv_jis_ms_wchar()
312 w = (c1 << 8) | c; in mbfl_filt_conv_jis_ms_wchar()
[all …]
/PHP-7.0/ext/standard/tests/file/
H A Dfseek_ftell_rewind_variation2-win32.phpt2 Test fseek(), ftell() & rewind() functions : usage variations - all w and x modes, default whence
29 $file_modes = array( "w","wb","wt","w+","w+b","w+t",
72 *** Testing fseek(), ftell(), rewind() : default whence & all w and x modes ***
75 -- File opened in mode w --
120 -- File opened in mode w+ --
135 -- File opened in mode w+b --
150 -- File opened in mode w+t --
257 -- File opened in mode w --
302 -- File opened in mode w+ --
317 -- File opened in mode w+b --
[all …]
H A Dfseek_ftell_rewind_variation2.phpt2 Test fseek(), ftell() & rewind() functions : usage variations - all w and x modes, default whence
29 $file_modes = array( "w","wb","wt","w+","w+b","w+t",
72 *** Testing fseek(), ftell(), rewind() : default whence & all w and x modes ***
75 -- File opened in mode w --
120 -- File opened in mode w+ --
135 -- File opened in mode w+b --
150 -- File opened in mode w+t --
257 -- File opened in mode w --
302 -- File opened in mode w+ --
317 -- File opened in mode w+b --
[all …]
H A Dstream_copy_to_stream.phpt13 $dest = fopen($new_file, 'w');
25 $dest = fopen($new_file, 'w');
40 $dest = fopen($new_file, 'w');
55 $dest = fopen($new_file, 'w');
70 $dest = fopen($new_file, 'w');
86 $dest = fopen($new_file, 'w');
101 $dest = fopen($new_file, 'w');
H A Dbug39551.phpt6 $bucket = stream_bucket_new(fopen('php://temp', 'w+'), '');
11 $bucket = stream_bucket_new(fopen('php://temp', 'w+'), '');
H A Dfgetcsv_variation8.phpt37 "w+", "w+b", "w+t",
45 $file_handle = fopen($filename, "w");
171 -- Testing fgetcsv() with file opened using w+ mode --
179 -- Testing fgetcsv() with file opened using w+b mode --
187 -- Testing fgetcsv() with file opened using w+t mode --
291 -- Testing fgetcsv() with file opened using w+ mode --
299 -- Testing fgetcsv() with file opened using w+b mode --
307 -- Testing fgetcsv() with file opened using w+t mode --
411 -- Testing fgetcsv() with file opened using w+ mode --
531 -- Testing fgetcsv() with file opened using w+ mode --
[all …]
H A Dfgetcsv_variation9.phpt37 "w+", "w+b", "w+t",
45 $file_handle = fopen($filename, "w");
169 -- Testing fgetcsv() with file opened using w+ mode --
177 -- Testing fgetcsv() with file opened using w+b mode --
185 -- Testing fgetcsv() with file opened using w+t mode --
289 -- Testing fgetcsv() with file opened using w+ mode --
297 -- Testing fgetcsv() with file opened using w+b mode --
305 -- Testing fgetcsv() with file opened using w+t mode --
409 -- Testing fgetcsv() with file opened using w+ mode --
529 -- Testing fgetcsv() with file opened using w+ mode --
[all …]
H A Dfseek_ftell_rewind_variation8-win32.phpt2 Test fseek(), ftell() & rewind() functions : usage variations - all w and x modes, SEEK_END
29 $file_modes = array( "w","wb","wt","w+","w+b","w+t",
74 -- File opened in mode w --
125 -- File opened in mode w+ --
142 -- File opened in mode w+b --
159 -- File opened in mode w+t --
280 -- File opened in mode w --
331 -- File opened in mode w+ --
348 -- File opened in mode w+b --
365 -- File opened in mode w+t --
H A Dfseek_ftell_rewind_variation8.phpt2 Test fseek(), ftell() & rewind() functions : usage variations - all w and x modes, SEEK_END
29 $file_modes = array( "w","wb","wt","w+","w+b","w+t",
74 -- File opened in mode w --
125 -- File opened in mode w+ --
142 -- File opened in mode w+b --
159 -- File opened in mode w+t --
280 -- File opened in mode w --
331 -- File opened in mode w+ --
348 -- File opened in mode w+b --
365 -- File opened in mode w+t --
H A Dreadfile_basic-win32.phpt24 $filemodes = array("w", "wt", "wb", "w+", "w+b", "w+t",
54 -- File opened with mode: w --
63 -- File opened with mode: w+ --
66 -- File opened with mode: w+b --
69 -- File opened with mode: w+t --
110 -- File opened with mode: w --
119 -- File opened with mode: w+ --
166 -- File opened with mode: w --
175 -- File opened with mode: w+ --
222 -- File opened with mode: w --
[all …]
H A Dreadfile_basic.phpt24 $filemodes = array("w", "wt", "wb", "w+", "w+b", "w+t",
54 -- File opened with mode: w --
63 -- File opened with mode: w+ --
66 -- File opened with mode: w+b --
69 -- File opened with mode: w+t --
110 -- File opened with mode: w --
119 -- File opened with mode: w+ --
166 -- File opened with mode: w --
175 -- File opened with mode: w+ --
222 -- File opened with mode: w --
[all …]
H A Dfgetcsv_variation18.phpt32 "w+", "w+b", "w+t",
40 $file_handle = fopen($filename, "w");
163 -- Testing fgetcsv() with file opened using w+ mode --
171 -- Testing fgetcsv() with file opened using w+b mode --
179 -- Testing fgetcsv() with file opened using w+t mode --
283 -- Testing fgetcsv() with file opened using w+ mode --
291 -- Testing fgetcsv() with file opened using w+b mode --
299 -- Testing fgetcsv() with file opened using w+t mode --
403 -- Testing fgetcsv() with file opened using w+ mode --
523 -- Testing fgetcsv() with file opened using w+ mode --
[all …]
H A Dfgetcsv_variation21.phpt22 "w+", "w+b", "w+t",
29 $file_handle = fopen($filename, "w");
144 -- Testing fgetcsv() with file opened using w+ mode --
152 -- Testing fgetcsv() with file opened using w+b mode --
160 -- Testing fgetcsv() with file opened using w+t mode --
/PHP-7.0/ext/gd/libgd/
H A Dgd_arc.c17 void gdImageEllipse(gdImagePtr im, int mx, int my, int w, int h, int c) in gdImageEllipse() argument
22 a=w>>1; in gdImageEllipse()
56 void gdImageFilledEllipse (gdImagePtr im, int mx, int my, int w, int h, int c) in gdImageFilledEllipse() argument
63 a=w>>1; in gdImageFilledEllipse()
H A Dgd.c351 f = (R == w) ? G - B : ((G == w) ? B - R : R - G); in RGB_to_HWB()
352 i = (R == w) ? 3 : ((G == w) ? 5 : 1); in RGB_to_HWB()
354 RETURN_HWB(i - f / (v - w), w, b); in RGB_to_HWB()
1168 for (w = wstart; w < wstart + wid; w++) { in gdImageLine()
1182 for (w = wstart; w < wstart + wid; w++) { in gdImageLine()
1196 for (w = wstart; w < wstart + wid; w++) { in gdImageLine()
1232 for (w = wstart; w < wstart + wid; w++) { in gdImageLine()
1246 for (w = wstart; w < wstart + wid; w++) { in gdImageLine()
1260 for (w = wstart; w < wstart + wid; w++) { in gdImageLine()
1502 for (w = wstart; w < wstart + wid; w++) { in dashedSet()
[all …]
H A Dgd_png.c123 png_uint_32 width, height, rowbytes, w, h; in gdImageCreateFromPngCtx() local
362 for (w = 0; w < width; w++) { in gdImageCreateFromPngCtx()
366 im->tpixels[h][w] = gdTrueColor (r, g, b); in gdImageCreateFromPngCtx()
375 for (w = 0; w < width; w++) { in gdImageCreateFromPngCtx()
386 im->tpixels[h][w] = gdTrueColorAlpha(r, g, b, a); in gdImageCreateFromPngCtx()
394 for (w = 0; w < width; ++w) { in gdImageCreateFromPngCtx()
395 register png_byte idx = row_pointers[h][w]; in gdImageCreateFromPngCtx()
396 im->pixels[h][w] = idx; in gdImageCreateFromPngCtx()
/PHP-7.0/ext/standard/tests/streams/
H A Dstream_get_meta_data_file_variation5.phpt8 $fp = fopen($filename, "w+");
47 string(2) "w+"
70 string(2) "w+"
/PHP-7.0/ext/standard/tests/general_functions/
H A Dproc_open.phpt12 1 => array("pipe", "w"),
13 2 => array("pipe", "w")
/PHP-7.0/ext/standard/tests/strings/
H A Dbug48709.phpt14 'wh', // w
15 'wa' // w
/PHP-7.0/ext/gd/tests/
H A Dbug51671.phpt9 $w = 1;
11 $im = imagecreatetruecolor($w, $h);
H A Dbug28147.phpt14 $w = imagecolorallocate($im, 255, 255, 255);
17 imagefilledrectangle($im,0,0,299,299,$w);
/PHP-7.0/tests/classes/
H A Diterators_003.phpt54 foreach($t as $w) {
55 if ($w == 1) {
59 if ($w == 2) {
63 echo "double:$v:$w\n";
/PHP-7.0/ext/pcre/tests/
H A Dpreg_match_basic.phpt12 var_dump(preg_match('/l^o,\s\w{5}/', $string, $match2, PREG_OFFSET_CAPTURE)); // tries to find "lo,…
16 var_dump(preg_match('@\w{4}\s\w{2}\s\\\(?:\s.*)@', $string, $match4, PREG_OFFSET_CAPTURE, 14)); //f…
/PHP-7.0/ext/zlib/tests/
H A Dzlib_filter_deflate2.phpt9 $fp = fopen('php://stdout', 'w');
16 �A� Dѫ�΍���1�MB��Uv�_�(�EL���/��aP�=Pi �;�6�f�Ce4��U9;w�5�� m /
/PHP-7.0/tests/basic/
H A Dbug71273.phpt13 …$cmd = getenv('TEST_PHP_EXECUTABLE') . " -n -d html_errors=on -d extension_dir=a/�/w -d extension=…
16 var_dump(preg_match(",.+a[\\/].+[\\/]w.php_kartoffelbrei.dll.+,s", $out));

Completed in 61 milliseconds

12345678910>>...38