Home
last modified time | relevance | path

Searched refs:m (Results 1 – 25 of 488) sorted by path

12345678910>>...20

/PHP-7.4/
H A D.gitignore235 # Files generated by `./run-tests.php -m` when checking for memory leaks
H A DUPGRADING.INTERNALS16 m. write_property return value
171 m. The write_property() object handler now returns the assigned value (after
/PHP-7.4/Zend/
H A DZend.m4105 __asm__ __volatile__ ("fnstcw %0" : "=m" (*&oldcw));
107 __asm__ __volatile__ ("fldcw %0" : : "m" (*&cw));
111 __asm__ __volatile__ ("fldcw %0" : : "m" (*&oldcw));
H A Dbench.php99 function Ack($m, $n){ argument
100 if($m == 0) return $n+1;
101 if($n == 0) return Ack($m-1, 1);
102 return Ack($m - 1, Ack($m, ($n - 1)));
H A Dzend_API.c1885 zend_module_entry *m, *r; in zend_sort_modules() local
1889 m = (zend_module_entry*)Z_PTR(b1->val); in zend_sort_modules()
1890 if (!m->module_started && m->deps) { in zend_sort_modules()
1891 const zend_module_dep *dep = m->deps; in zend_sort_modules()
H A Dzend_string.h145 static zend_always_inline zend_string *zend_string_safe_alloc(size_t n, size_t m, size_t l, int per… in zend_string_safe_alloc() argument
147 …zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), … in zend_string_safe_alloc()
152 ZSTR_LEN(ret) = (n * m) + l; in zend_string_safe_alloc()
244 static zend_always_inline zend_string *zend_string_safe_realloc(zend_string *s, size_t n, size_t m,… in zend_string_safe_realloc() argument
250 …ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persisten… in zend_string_safe_realloc()
251 ZSTR_LEN(ret) = (n * m) + l; in zend_string_safe_realloc()
256 ret = zend_string_safe_alloc(n, m, l, persistent); in zend_string_safe_realloc()
257 memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); in zend_string_safe_realloc()
H A Dzend_strtod.c660 (b, m, a) Bigint *b; int m, a; in multadd()
662 (Bigint *b, int m, int a) /* multiply by m and add a */
683 y = *x * (ULLong)m + carry;
689 y = (xi & 0xffff) * m + carry;
690 z = (xi >> 16) * m + (y >> 16);
694 y = *x * m + carry;
H A Dzend_vm_gen.php2091 out($f, $m[1].$executor_name.$m[3]."\n");
2153 skip_blanks($f, $m[1], $m[3]);
2166 skip_blanks($f, $m[1], $m[3]);
2413 $hot = !empty($m[1]) ? $m[1] : false;
2464 $hot = !empty($m[1]) ? $m[1] : false;
2510 $inline = !empty($m[1]) && $m[1] === "_INLINE";
2511 $cold = !empty($m[1]) && $m[1] === "_COLD";
2512 $hot = !empty($m[1]) && $m[1] === "_HOT";
2516 $param = isset($m[6]) ? $m[6] : null;
2551 $export[] = array("handler",$m[1],$m[2]);
[all …]
/PHP-7.4/Zend/tests/
H A Daccess_modifiers_008.phpt4 Discussion: http://marc.info/?l=php-internals&m=120221184420957&w=2
H A Daccess_modifiers_009.phpt4 Discussion: http://marc.info/?l=php-internals&m=120221184420957&w=2
H A Dbug34678.phpt6 public function __call($m, $a) {
H A Dbug40784.phpt7 function A () { echo "I'm A\n"; }
23 I'm A
24 I'm A
H A Dbug43175.phpt10 public function __call($m, $a) {
H A Dbug45805.phpt26 $m = new ReflectionMethod('B', 'foo');
27 $m->invoke($this);
H A Dbug47054.phpt12 public function m() {
18 $d->m();
27 D::m();
37 Deprecated: Non-static method D::m() should not be called statically in %s on line %d
41 #0 %s(%d): D::m()
H A Dbug69167.phpt5 function l($m) {
6 echo $m . "\n";
H A Dbug70898.phpt5 function m($f,$a){
9 echo implode(m("",m("",m("",m("",m("0000000000000000000000000000000000",("")))))));
H A Dbug71275.phpt17 echo "I'm working hard to clone";
27 I'm working hard to clone
H A Dbug71428.1.phpt6 public function m(array $a = null) {}
9 public function m(array $a = []) {}
12 Warning: Declaration of B::m(array $a = Array) should be compatible with A::m(?array $a = NULL) in …
H A Dbug71428.3.phpt6 class B { public function m(A $a = NULL, $n) { echo "B.m";} };
7 class C extends B { public function m(A $a , $n) { echo "C.m";} };
10 Warning: Declaration of C::m(A $a, $n) should be compatible with B::m(?A $a, $n) in %sbug71428.3.ph…
H A Dbug79793.phpt8 set_error_handler(function($_, $m) use (&$key) {
9 echo "$m\n";
H A Dfr47160.phpt72 $m = 'world';
73 $f = $x($c, $m);
H A Dstatic_variable_in_private_method.phpt7 private function m() {
/PHP-7.4/Zend/tests/variadic/
H A Dremoving_parameter_error.phpt7 * PHP does not allow this (for non-variadics), so I'm not allowing it here, too,
/PHP-7.4/build/
H A Dconfig.guess1260 mc68k:UNIX:SYSTEM5:3.51m)
1746 # time-stamp-format: "%:y-%02m-%02d"

Completed in 66 milliseconds

12345678910>>...20