Home
last modified time | relevance | path

Searched refs:w (Results 1 – 25 of 1026) sorted by last modified time

12345678910>>...42

/PHP-7.2/
H A DNEWS2022 argument w/strict_types). (Anatol)
2536 . Fixed bug #72373 (TypeError after Generator function w/declared return type
2697 . Fixed bug #50194 (imagettftext broken on transparent background w/o
H A Dconfigure.ac572 dnl The WARNING_LEVEL required because cc in QNX hates -w option without an argument
H A Dserver-tests.php119 $w = explode("\n", $wanted);
121 $w1 = array_diff_assoc($w,$o);
122 $o1 = array_diff_assoc($o,$w);
188 $w = null;
190 $n = @stream_select($r, $w, $e, 60);
/PHP-7.2/ext/session/
H A Dsession.c275 unsigned short w; in bin_to_readable() local
283 w = 0; in bin_to_readable()
290 w |= *p++ << have; in bin_to_readable()
301 *out++ = hexconvtab[w & mask]; in bin_to_readable()
302 w >>= nbits; in bin_to_readable()
/PHP-7.2/ext/standard/tests/file/
H A Dbug79099.phpt5 $stream = fopen('php://memory', 'w+');
12 $stream = fopen('php://memory', 'w+');
19 $stream = fopen('php://memory', 'w+');
/PHP-7.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_big5.c159 int c1, w, c2; in mbfl_filt_conv_big5_wchar() local
177 w = c & MBFL_WCSGROUP_MASK; in mbfl_filt_conv_big5_wchar()
192 if (w >= 0 && w < big5_ucs_table_size) { in mbfl_filt_conv_big5_wchar()
193 w = big5_ucs_table[w]; in mbfl_filt_conv_big5_wchar()
195 w = 0; in mbfl_filt_conv_big5_wchar()
217 if (w <= 0) { in mbfl_filt_conv_big5_wchar()
218 w = (c1 << 8) | c; in mbfl_filt_conv_big5_wchar()
219 w &= MBFL_WCSPLANE_MASK; in mbfl_filt_conv_big5_wchar()
220 w |= MBFL_WCSPLANE_BIG5; in mbfl_filt_conv_big5_wchar()
226 w = (c1 << 8) | c; in mbfl_filt_conv_big5_wchar()
[all …]
/PHP-7.2/tests/strings/
H A D002.phpt7 $fp = fopen("php://stdout", "w") or die("Arrggsgg!!");
/PHP-7.2/tests/output/
H A Dob_start_basic_004.phpt11 … 1 should not have any special behaviour (http://marc.info/?l=php-internals&m=123476465621346&w=2).
/PHP-7.2/tests/lang/
H A DforeachLoopIteratorAggregate.004.phpt59 foreach($t as $w) {
60 echo "double:$v:$w\n";
H A Dengine_assignExecutionOrder_002.phpt64 list(list(list($r,$s,,$t),list($u,$v),,$w),,$x) = $q4;
65 echo "$r $s $t $u $v $w $x\n";
/PHP-7.2/tests/classes/
H A Diterators_004.phpt12 foreach($obj as $w) {
13 echo "object:$w\n";
48 foreach($obj as $v => $w) {
49 echo "object:$v=>$w\n";
/PHP-7.2/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));
/PHP-7.2/sapi/phpdbg/tests/
H A Dwatch_001.phpt8 w r $b
H A Dwatch_002.phpt6 w a $a
H A Dwatch_003.phpt6 w $a[0]
H A Dwatch_004.phpt8 w $a
H A Dwatch_005.phpt6 w r $a
H A Dwatch_006.phpt6 w $a[0]
7 w r $b
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_utils.c345 struct winsize w; in phpdbg_get_terminal_width() local
347 columns = ioctl(fileno(stdout), TIOCGWINSZ, &w) == 0 ? w.ws_col : 80; in phpdbg_get_terminal_width()
363 struct winsize w; in phpdbg_get_terminal_height() local
365 lines = ioctl(fileno(stdout), TIOCGWINSZ, &w) == 0 ? w.ws_row : 40; in phpdbg_get_terminal_height()
H A Dcreate-test.php74 $w = $e = null; variable
75 $n = @stream_select($r, $w, $e, null);
/PHP-7.2/scripts/dev/
H A Dgenerate-phpt.phar823 $fh = fopen($fileName, 'w');
/PHP-7.2/sapi/fpm/tests/
H A Dlogtool.inc7 const P_TIME = '\[\d\d-\w\w\w-\d{4} \d\d:\d\d:\d\d\]';
H A Dresponse.inc178 $this->checkHeader('Content-type', '|^' . $contentType . '(;\s?charset=\w+)?|', true)
H A Dtester.inc330 $desc = $this->outDesc ? [] : [1 => array('pipe', 'w')];
778 '/{{([a-zA-Z0-9:]+)(\[\w+\])?}}/',
/PHP-7.2/sapi/litespeed/
H A Dlsapilib.c4007 #define MD5STEP(f, w, x, y, z, data, s) \ argument
4008 ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )

Completed in 89 milliseconds

12345678910>>...42