Home
last modified time | relevance | path

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

12345678910>>...24

/php-src/.circleci/
H A Dconfig.yml167 no_output_timeout: 30m
/php-src/.github/workflows/
H A Dpush.yml309 git commit -m "Add result for ${{ github.repository }}@${{ github.sha }}"
/php-src/
H A D.gitignore240 # Files generated by `./run-tests.php -m` when checking for memory leaks
/php-src/Zend/Optimizer/
H A Dzend_inference.c553 temp = (a | m) & -m; in minOR()
559 temp = (c | m) & -m; in minOR()
565 m = m >> 1; in minOR()
577 temp = (b - m) | (m - 1); in maxOR()
582 temp = (d - m) | (m - 1); in maxOR()
588 m = m >> 1; in maxOR()
600 temp = (a | m) & -m; in minAND()
605 temp = (c | m) & -m; in minAND()
611 m = m >> 1; in minAND()
623 temp = (b | ~m) | (m - 1); in maxAND()
[all …]
H A Dzend_optimizer.c147 zend_module_entry *m = zend_hash_find_ptr(&module_registry, lc_name); in zend_optimizer_eval_special_func_call() local
150 if (!m) { in zend_optimizer_eval_special_func_call()
158 if (m->type == MODULE_PERSISTENT in zend_optimizer_eval_special_func_call()
160 && m->handle == NULL in zend_optimizer_eval_special_func_call()
/php-src/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)));
/php-src/Zend/tests/
H A Dbug34678.phpt6 public function __call($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();
H A Dbug69167.phpt5 function l($m) {
6 echo $m . "\n";
H A Dbug69180-backtrace.phpt59 $m = new X();
60 $m->a;
64 $m = new Y();
65 $m->a;
69 $m = new Z();
70 $m->a;
74 $m = new P();
75 $m->a;
H A Dbug70898.phpt5 function m($f,$a){
10 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 = []) {}
13 Fatal error: Declaration of B::m(array $a = []) must 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 Deprecated: B::m(): Implicitly marking parameter $a as nullable is deprecated, the explicit nullabl…
12 Fatal error: Declaration of C::m(A $a, $n) must be compatible with B::m(?A $a, $n) in %sbug71428.3.…
H A Dbug79793.phpt8 set_error_handler(function($_, $m) use (&$key) {
9 echo "$m\n";
H A Dbug80045.phpt14 public function __call($m, $p) {}
H A Dexception_stream_wrapper.phpt15 function __call($m, $a) {
16 echo "$m\n";
H A Dfr47160.phpt58 $m = 'world';
59 $f = $x($c, $m);
H A Dgh9500.phpt19 private readonly A|(B&C) $m;
/php-src/Zend/tests/generators/
H A Dgh9801.phpt4 memory_limit=16m
/php-src/Zend/tests/in-de-crement/
H A Dincdec_bool_exception.phpt6 set_error_handler(function($severity, $m) {
7 throw new Exception($m, $severity);
H A Dincdec_strings_exception.phpt6 set_error_handler(function($severity, $m) {
8 $m = 'Deprecated: ' . $m;
11 $m = 'Warning: ' . $m;
13 throw new Exception($m, $severity);

Completed in 43 milliseconds

12345678910>>...24