Home
last modified time | relevance | path

Searched refs:M (Results 1 – 25 of 553) sorted by relevance

12345678910>>...23

/PHP-8.1/ext/mysqlnd/
H A Dmysqlnd_portability.h152 #define float8get(V,M) { ((float8get_union *)&(V))->m[0] = *((zend_long*) (M)); \ argument
156 #define float4get(V,M) { *((float *) &(V)) = *((float*) (M)); } argument
158 #define floatget(V,M) memcpy((char*) &(V),(char*) (M),sizeof(float)) argument
224 #define float4get(V,M) do { float def_temp;\ argument
240 #define float8get(V,M) do { double def_temp;\ argument
252 #define float4get(V,M) memcpy((char*) &(V),(char*) (M),sizeof(float)) argument
264 #define float8get(V,M) do { double def_temp;\ argument
265 ((char*) &def_temp)[0]=(M)[4];\
266 ((char*) &def_temp)[1]=(M)[5];\
289 #define float8get(V,M) memcpy((char*) &(V),(char*) (M), sizeof(double)) argument
[all …]
H A Dconfig-win.h97 #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-8.1/ext/reflection/tests/
H A Dgh8982.phpt12 class M
19 #[M]
26 #[M]
41 test(M::class, $f);
43 test(M::class, $m);
49 Attribute "M" cannot target function (allowed targets: method)
51 object(M)#4 (0) {
/PHP-8.1/ext/standard/tests/file/
H A D005_basic.phpt7 print( @date('Y:M:D:H:i:s', fileatime(__FILE__)) )."\n";
8 print( @date('Y:M:D:H:i:s', filemtime(__FILE__)) )."\n";
9 print( @date('Y:M:D:H:i:s', filectime(__FILE__)) )."\n";
10 print( @date('Y:M:D:H:i:s', touch(__DIR__."/005_basic.tmp")) )."\n";
13 print( @date('Y:M:D:H:i:s', fileatime(".")) )."\n";
14 print( @date('Y:M:D:H:i:s', filemtime(".")) )."\n";
15 print( @date('Y:M:D:H:i:s', filectime(".")) )."\n";
16 print( @date('Y:M:D:H:i:s', touch(__DIR__."/005_basic")) )."\n";
/PHP-8.1/ext/date/tests/
H A Ddate_modify-1.phpt7 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 Dbug26198.phpt2 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 Dbug73294.phpt7 $M = "06";
10 $dt = new DateTime("{$i}-{$M}-{$D} 00:00:00");
11 $expected = "{$i}-{$M}-{$D} 00:00:00";
H A Dtest-parse-from-format.phpt35 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 Ddate_modify_basic1.phpt14 echo "After modification 1: " . date_format($datetime, "D, d M Y") . "\n";
17 echo "After modification 2: " . date_format($datetime, "D, d M Y H:i:s") . "\n";
20 echo "After modification 3: " . date_format($datetime, "D, d M Y") . "\n";
23 echo "After modification 4: " . date_format($datetime, "D, d M Y") . "\n";
H A DDateTime_modify_basic1.phpt14 echo "After modification 1: " . $datetime->format("D, d M Y") . "\n";
17 echo "After modification 2: " . $datetime->format("D, d M Y H:i:s") . "\n";
20 echo "After modification 3: " . $datetime->format("D, d M Y") . "\n";
23 echo "After modification 4: " . $datetime->format("D, d M Y") . "\n";
H A Dbug39782.phpt8 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 Dbug62326.phpt14 6M / 0D 0H 0M
H A DDateTime_fix_createFromFormat.phpt18 $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 Ddate_create-2.phpt7 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 Ddate_modify-2.phpt7 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-8.1/Zend/tests/
H A Dbug36568.phpt4 memory_limit=16M
7 ini_set("memory_limit", "32M");
11 32M
/PHP-8.1/ext/standard/
H A Dmt_rand.c86 #define M (397) /* a period parameter */ macro
126 for (i = N - M; i--; ++p) in php_mt_reload()
127 *p = twist(p[M], p[0], p[1]); in php_mt_reload()
128 for (i = M; --i; ++p) in php_mt_reload()
129 *p = twist(p[M-N], p[0], p[1]); in php_mt_reload()
130 *p = twist(p[M-N], p[0], state[0]); in php_mt_reload()
133 for (i = N - M; i--; ++p) in php_mt_reload()
134 *p = twist_php(p[M], p[0], p[1]); in php_mt_reload()
135 for (i = M; --i; ++p) in php_mt_reload()
136 *p = twist_php(p[M-N], p[0], p[1]); in php_mt_reload()
[all …]
/PHP-8.1/sapi/cli/tests/
H A D023.phpt15 memory_limit = 40M
17 memory_limit = 50M
19 memory_limit = 60M
21 memory_limit = 70M
45 string(3) "40M"
/PHP-8.1/ext/exif/tests/
H A Dexif000.phpt35 [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 Dexif001.phpt51 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 Dexif003.phpt59 string(41) "Photo (c) M.Boerger, Edited by M.Boerger."
61 string(19) "Photo (c) M.Boerger"
63 string(20) "Edited by M.Boerger."
72 string(19) "Photo (c) M.Boerger"
/PHP-8.1/ext/pcre/tests/
H A Dbug81424a.phpt9 preg_match('/(?P<size>\d+)m|M/', "4M", $m),
17 string(1) "M"
/PHP-8.1/ext/standard/tests/network/
H A Dsetcookie.phpt24 '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-8.1/sapi/fpm/tests/
H A Dbug75212-php-value-in-user-ini.phpt20 php_admin_value[memory_limit]=32M
32 memory_limit=64M
42 'string(3) "32M"',
/PHP-8.1/ext/zlib/tests/
H A Dbug74240.phpt8 ini_set('memory_limit', '64M');
15 // configured for 64M

Completed in 30 milliseconds

12345678910>>...23