Home
last modified time | relevance | path

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

123456789

/php-src/Zend/tests/zend_ini/
H A Dzend_ini_parse_quantity.phpt72 # "1M"
75 # "0123M"
78 # "1M "
144 # "1 M"
150 # "1 M "
216 # "+1M"
222 # "+1M "
288 # "+1 M"
360 # "-1M"
366 # "-1M "
[all …]
H A Dzend_ini_parse_quantity_binary_prefixes.phpt129 # "0b11 M"
132 # "0B11 M"
135 # "0b11 M "
138 # "0B11 M "
249 # "+0b11 M"
252 # "+0B11 M"
255 # "+0b11 M "
369 # "-0b11 M"
372 # "-0B11 M"
489 # " 0b11 M"
[all …]
H A Dzend_ini_parse_quantity_hex_prefixes.phpt129 # "0x1F M"
132 # "0X1F M"
135 # "0x1F M "
138 # "0X1F M "
249 # "+0x1F M"
252 # "+0X1F M"
255 # "+0x1F M "
369 # "-0x1F M"
372 # "-0X1F M"
489 # " 0x1F M"
[all …]
H A Dzend_ini_parse_quantity_octal_prefixes.phpt129 # "0o14 M"
132 # "0O14 M"
135 # "0o14 M "
138 # "0O14 M "
249 # "+0o14 M"
252 # "+0O14 M"
255 # "+0o14 M "
369 # "-0o14 M"
372 # "-0O14 M"
489 # " 0o14 M"
[all …]
H A Dzend_ini_parse_quantity_zero.phpt12 '0M',
19 '-0M',
41 # "0M"
62 # "-0M"
/php-src/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.h71 #define float8get(V,M) { *((int32_t *) &V) = *((int32_t*) M); \ argument
72 *(((int32_t *) &V)+1) = *(((int32_t*) M)+1); }
75 #define float4get(V,M) { *((int32_t *) &(V)) = *((int32_t*) (M)); } argument
/php-src/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-src/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-src/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 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 Dtest-parse-from-format.phpt37 string(16) "l, d-M-Y H:i:s T"
70 string(16) "D, d M y H:i:s O"
81 string(16) "l, d-M-y H:i:s T"
92 string(16) "D, d M y H:i:s O"
103 string(16) "D, d M Y H:i:s O"
114 string(16) "D, d M Y H:i:s O"
147 string(16) "D, d M Y H:i:s O"
/php-src/Zend/tests/
H A Dbug36568.phpt4 memory_limit=16M
7 ini_set("memory_limit", "32M");
11 32M
/php-src/sapi/cli/tests/
H A D023.phpt16 memory_limit = 40M
18 memory_limit = 50M
20 memory_limit = 60M
22 memory_limit = 70M
46 string(3) "40M"
/php-src/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-src/ext/pcre/tests/
H A Dbug81424a.phpt9 preg_match('/(?P<size>\d+)m|M/', "4M", $m),
17 string(1) "M"
/php-src/ext/standard/tests/general_functions/
H A Dparse_ini_numeric_entry_name.phpt8 2M[]=2
19 ["2M"]=>
/php-src/ext/random/
H A Dengine_mt19937.c94 #define M (397) /* a period parameter */ macro
108 for (uint32_t i = N - M; i--; ++p) { in mt19937_reload()
109 *p = twist(p[M], p[0], p[1]); in mt19937_reload()
111 for (uint32_t i = M; --i; ++p) { in mt19937_reload()
112 *p = twist(p[M-N], p[0], p[1]); in mt19937_reload()
114 *p = twist(p[M-N], p[0], state->state[0]); in mt19937_reload()
116 for (uint32_t i = N - M; i--; ++p) { in mt19937_reload()
117 *p = twist_php(p[M], p[0], p[1]); in mt19937_reload()
119 for (uint32_t i = M; --i; ++p) { in mt19937_reload()
120 *p = twist_php(p[M-N], p[0], p[1]); in mt19937_reload()
[all …]
/php-src/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…

Completed in 44 milliseconds

123456789