/PHP-7.4/ext/mysqlnd/ |
H A D | mysqlnd_portability.h | 172 #define float8get(V,M) { ((float8get_union *)&(V))->m[0] = *((zend_long*) (M)); \ argument 176 #define float4get(V,M) { *((float *) &(V)) = *((float*) (M)); } argument 178 #define floatget(V,M) memcpy((char*) &(V),(char*) (M),sizeof(float)) argument 252 #define float4get(V,M) do { float def_temp;\ argument 268 #define float8get(V,M) do { double def_temp;\ argument 280 #define float4get(V,M) memcpy((char*) &(V),(char*) (M),sizeof(float)) argument 292 #define float8get(V,M) do { double def_temp;\ argument 293 ((char*) &def_temp)[0]=(M)[4];\ 294 ((char*) &def_temp)[1]=(M)[5];\ 317 #define float8get(V,M) memcpy((char*) &(V),(char*) (M), sizeof(double)) argument [all …]
|
H A D | config-win.h | 97 #define float8get(V,M) { *((int32_t *) &V) = *((int32_t*) M); \ argument 98 *(((int32_t *) &V)+1) = *(((int32_t*) M)+1); } 101 #define float4get(V,M) { *((int32_t *) &(V)) = *((int32_t*) (M)); } argument
|
/PHP-7.4/ext/date/tests/ |
H A D | date_modify-1.phpt | 7 echo date_format($ts, 'D, d M Y H:i:s T'), "\n"; 9 echo date_format($ts, 'D, d M Y H:i:s T'), "\n"; 13 echo date_format($ts, 'D, d M Y H:i:s T'), "\n"; 15 echo date_format($ts, 'D, d M Y H:i:s T'), "\n"; 18 echo date_format($ts, 'D, d M Y H:i:s T'), "\n"; 20 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
|
H A D | bug26198.phpt | 2 Bug #26198 (strtotime handling of "M Y" and "Y M" format) 7 echo gmdate("M Y (Y-m-d H:i:s T)\n", strtotime("2001 Oct"));
|
H A D | bug73294.phpt | 7 $M = "06"; 10 $dt = new DateTime("{$i}-{$M}-{$D} 00:00:00"); 11 $expected = "{$i}-{$M}-{$D} 00:00:00";
|
H A D | test-parse-from-format.phpt | 35 string(16) "l, d-M-Y H:i:s T" 57 string(16) "D, d M y H:i:s O" 68 string(16) "l, d-M-y H:i:s T" 79 string(16) "D, d M y H:i:s O" 90 string(16) "D, d M Y H:i:s O" 101 string(16) "D, d M Y H:i:s O" 123 string(16) "D, d M Y H:i:s O"
|
H A D | bug39782.phpt | 8 echo $dttTest->format('D M j Y - H:i:s') . "\n"; 11 echo $dttTest->format('D M j Y - H:i:s') . "\n"; 14 echo $dttTest->format('D M j Y - H:i:s') . "\n";
|
H A D | date_modify_basic1.phpt | 20 echo "After modification 1: " . date_format($datetime, "D, d M Y") . "\n"; 23 echo "After modification 2: " . date_format($datetime, "D, d M Y H:i:s") . "\n"; 26 echo "After modification 3: " . date_format($datetime, "D, d M Y") . "\n"; 29 echo "After modification 4: " . date_format($datetime, "D, d M Y") . "\n";
|
H A D | DateTime_modify_basic1.phpt | 20 echo "After modification 1: " . $datetime->format("D, d M Y") . "\n"; 23 echo "After modification 2: " . $datetime->format("D, d M Y H:i:s") . "\n"; 26 echo "After modification 3: " . $datetime->format("D, d M Y") . "\n"; 29 echo "After modification 4: " . $datetime->format("D, d M Y") . "\n";
|
H A D | DateTime_fix_createFromFormat.phpt | 18 $fromFormat = DateTime::createFromFormat( "D., M# j, Y g:iA", $string ); 20 echo "Format method: " . $orig->format("D., M. j, Y g:iA") . "\n"; 21 echo "createFromFormat method: " . $fromFormat->format("D., M. j, Y g:iA") . "\n";
|
H A D | date_create-2.phpt | 7 echo $d->format('D, d M Y H:i:s T'), "\n"; 10 echo $d->format('D, d M Y H:i:s T'), "\n";
|
H A D | date_modify-2.phpt | 7 echo date_format($d, 'D, d M Y H:i:s T'), "\n"; 9 echo date_format($d, 'D, d M Y H:i:s T'), "\n";
|
/PHP-7.4/Zend/tests/ |
H A D | bug36568.phpt | 4 memory_limit=16M 7 ini_set("memory_limit", "32M"); 11 32M
|
H A D | bug81104.phpt | 4 memory_limit=5M 13 ini_set('memory_limit', '10M');
|
/PHP-7.4/ext/standard/ |
H A D | mt_rand.c | 87 #define M (397) /* a period parameter */ macro 129 for (i = N - M; i--; ++p) in php_mt_reload() 130 *p = twist(p[M], p[0], p[1]); in php_mt_reload() 131 for (i = M; --i; ++p) in php_mt_reload() 132 *p = twist(p[M-N], p[0], p[1]); in php_mt_reload() 133 *p = twist(p[M-N], p[0], state[0]); in php_mt_reload() 136 for (i = N - M; i--; ++p) in php_mt_reload() 137 *p = twist_php(p[M], p[0], p[1]); in php_mt_reload() 138 for (i = M; --i; ++p) in php_mt_reload() 139 *p = twist_php(p[M-N], p[0], p[1]); in php_mt_reload() [all …]
|
/PHP-7.4/sapi/cli/tests/ |
H A D | 023.phpt | 15 memory_limit = 40M 17 memory_limit = 50M 19 memory_limit = 60M 21 memory_limit = 70M 45 string(3) "40M"
|
/PHP-7.4/ext/pcre/tests/ |
H A D | bug81424a.phpt | 9 preg_match('/(?P<size>\d+)m|M/', "4M", $m), 17 string(1) "M"
|
/PHP-7.4/ext/exif/tests/ |
H A D | exif000.phpt | 35 [Copyright] => Photo (c) M.Boerger, Edited by M.Boerger. 36 [Copyright.Photographer] => Photo (c) M.Boerger 37 [Copyright.Editor] => Edited by M.Boerger. 42 [Copyright] => Photo (c) M.Boerger
|
H A D | exif_read_exif_data_basic-mb.phpt | 41 [Copyright] => Photo (c) M.Boerger, Edited by M.Boerger. 42 [Copyright.Photographer] => Photo (c) M.Boerger 43 [Copyright.Editor] => Edited by M.Boerger. 48 [Copyright] => Photo (c) M.Boerger
|
H A D | exif_read_exif_data_basic.phpt | 41 [Copyright] => Photo (c) M.Boerger, Edited by M.Boerger. 42 [Copyright.Photographer] => Photo (c) M.Boerger 43 [Copyright.Editor] => Edited by M.Boerger. 48 [Copyright] => Photo (c) M.Boerger
|
H A D | exif001.phpt | 51 string(41) "Photo (c) M.Boerger, Edited by M.Boerger." 53 string(19) "Photo (c) M.Boerger" 55 string(20) "Edited by M.Boerger." 64 string(19) "Photo (c) M.Boerger"
|
H A D | exif003.phpt | 58 string(41) "Photo (c) M.Boerger, Edited by M.Boerger." 60 string(19) "Photo (c) M.Boerger" 62 string(20) "Edited by M.Boerger." 71 string(19) "Photo (c) M.Boerger"
|
/PHP-7.4/ext/standard/tests/file/ |
H A D | 005_basic.phpt | 24 print( @date('Y:M:D:H:i:s', fileatime(__FILE__)) )."\n"; 25 print( @date('Y:M:D:H:i:s', filemtime(__FILE__)) )."\n"; 26 print( @date('Y:M:D:H:i:s', filectime(__FILE__)) )."\n"; 27 print( @date('Y:M:D:H:i:s', touch(__DIR__."/005_basic.tmp")) )."\n"; 30 print( @date('Y:M:D:H:i:s', fileatime(".")) )."\n"; 31 print( @date('Y:M:D:H:i:s', filemtime(".")) )."\n"; 32 print( @date('Y:M:D:H:i:s', filectime(".")) )."\n"; 33 print( @date('Y:M:D:H:i:s', touch(__DIR__."/005_basic")) )."\n";
|
/PHP-7.4/ext/standard/tests/network/ |
H A D | setcookie.phpt | 24 'Set-Cookie: name=deleted; expires='.date('D, d-M-Y H:i:s', 1).' GMT; Max-Age=0', 25 'Set-Cookie: name=deleted; expires='.date('D, d-M-Y H:i:s', 1).' GMT; Max-Age=0', 29 'Set-Cookie: name=value; expires='.date('D, d-M-Y H:i:s', $tsp).' GMT; Max-Age=5', 30 'Set-Cookie: name=value; expires='.date('D, d-M-Y H:i:s', $tsn).' GMT; Max-Age=0', 31 'Set-Cookie: name=value; expires='.date('D, d-M-Y H:i:s', $tsc).' GMT; Max-Age=0', 36 'Set-Cookie: name=value; expires='.date('D, d-M-Y H:i:s', $tsp).' GMT; Max-Age=5', 37 …'Set-Cookie: name=value; expires='.date('D, d-M-Y H:i:s', $tsn).' GMT; Max-Age=0; path=/path/; dom…
|
/PHP-7.4/sapi/fpm/tests/ |
H A D | bug75212-php-value-in-user-ini.phpt | 20 php_admin_value[memory_limit]=32M 32 memory_limit=64M 42 'string(3) "32M"',
|