Home
last modified time | relevance | path

Searched refs:n (Results 1 – 25 of 10077) sorted by path

12345678910>>...404

/php-src/
H A D.gdbinit43 printf "Compiled variables count: %d\n\n", $cv_count
144 printf "\n"
274 printf "\n"
305 printf "}\n"
316 while $n > 0
318 set $n = $n - 1
347 set $n = $n - 1
378 printf "}\n"
510 printf ")\n"
515 printf "}\n"
[all …]
H A DCONTRIBUTING.md409 <max 79 characters short description>\n
410 \n
412 \n
/php-src/.github/actions/test-macos/
H A Daction.yml26 -j$(($(sysctl -n hw.ncpu) - 1)) \
/php-src/.github/scripts/windows/
H A Dtest_task.bat60 C:\Firebird\instsvc.exe install -n TestInstance
62 C:\Firebird\instsvc.exe start -n TestInstance
/php-src/.github/workflows/
H A Dnightly.yml251 make -j$(sysctl -n hw.logicalcpu) >/dev/null
418 printf "Testing amp/%s\n" "$repository"
438 …stSharedGet()", "#[\\PHPUnit\\Framework\\Attributes\\Group('"'"'skip'"'"')]\n public function t…
449 printf "Testing reactphp/%s\n" "$repository"
481 …place("public function testSanitizeDeepNestedString()", "/** @group skip */\n public function t…
483 …terTest.php"); $c = str_replace("*/\n public function testCastNonTrailingCharPointer()", "* @gr…
486 … for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
H A Dpush.yml180 make -j$(sysctl -n hw.logicalcpu) >/dev/null
/php-src/TSRM/
H A Dthreads.m449 if test -n "$PTHREAD_FLAGS"; then
H A Dtsrm_win32.c622 uint32_t n = in tsrm_choose_random_shm_key() local
627 return (n & 0x1fffffff) + TSRM_BASE_SHM_KEY_ADDRESS; in tsrm_choose_random_shm_key()
/php-src/Zend/Optimizer/
H A Dblock_pass.c1104 for (int n = 0; n < cfg->blocks_count; n++) { in assemble_code_blocks() local
1106 cfg->map[cfg->blocks[n].start] = n; in assemble_code_blocks()
1114 zend_basic_block *target_block = cfg->blocks + block->successors[n]; in get_target_block()
1121 block->successors[n] = b; in get_target_block()
1130 zend_basic_block *target_block = cfg->blocks + block->successors[n]; in get_follow_block()
1137 block->successors[n] = b; in get_follow_block()
1413 int n; in zend_t_usage() local
1433 for (n = 1; n < cfg->blocks_count; n++) { in zend_t_usage()
1434 block = cfg->blocks + n; in zend_t_usage()
1514 for (n = cfg->blocks_count; n > 0;) { in zend_t_usage()
[all …]
H A Dcompact_literals.c42 #define LITERAL_INFO(n, related) do { \ argument
43 info[n].num_related = (related); \
157 int i, j, n, *map; in zend_optimizer_compact_literals() local
420 n = info[i].num_related; in zend_optimizer_compact_literals()
421 while (n > 1) { in zend_optimizer_compact_literals()
424 n--; in zend_optimizer_compact_literals()
436 n = info[i].num_related; in zend_optimizer_compact_literals()
437 while (n > 1) { in zend_optimizer_compact_literals()
441 n--; in zend_optimizer_compact_literals()
H A Dzend_cfg.c779 int i, j, k, n; in zend_cfg_identify_loops() local
833 n = 1; in zend_cfg_identify_loops()
834 while (j != n) { in zend_cfg_identify_loops()
836 j = n; in zend_cfg_identify_loops()
840 sorted_blocks[n++] = child; in zend_cfg_identify_loops()
846 while (n > 0) { in zend_cfg_identify_loops()
847 i = sorted_blocks[--n]; in zend_cfg_identify_loops()
H A Dzend_dump.c446 uint32_t n = 0; in zend_dump_op() local
649 fprintf(stderr, " BB%d", b->successors[n++]); in zend_dump_op()
723 fprintf(stderr, " BB%d", b->successors[n++]); in zend_dump_op()
785 zend_basic_block *b = cfg->blocks + n; in zend_dump_block_info()
787 if (n > 0) { in zend_dump_block_info()
790 fprintf(stderr, "BB%d:\n ;", n); in zend_dump_block_info()
883 zend_dump_block_info(cfg, n, dump_flags); in zend_dump_block_header()
885 zend_ssa_phi *p = ssa->blocks[n].phis; in zend_dump_block_header()
1026 int n; in zend_dump_op_array() local
1029 for (n = 0; n < cfg->blocks_count; n++) { in zend_dump_op_array()
[all …]
H A Dzend_func_info.c201 static void zend_func_info_add(const func_info_t *func_infos, size_t n) in zend_func_info_add() argument
203 for (size_t i = 0; i < n; i++) { in zend_func_info_add()
H A Dzend_inference.c770 static inline zend_long safe_shift_left(zend_long n, zend_long s) { in safe_shift_left() argument
771 return (zend_long) ((zend_ulong) n << (zend_ulong) s); in safe_shift_left()
774 static inline bool shift_left_overflows(zend_long n, zend_long s) { in shift_left_overflows() argument
776 if (n >= 0) { in shift_left_overflows()
777 return s >= SIZEOF_ZEND_LONG * 8 - 1 || safe_shift_left(n, s) < n; in shift_left_overflows()
779 return s >= SIZEOF_ZEND_LONG * 8 || safe_shift_left(n, s) > n; in shift_left_overflows()
1738 int j, n; in zend_infer_ranges_warmup() local
1761 for (n = 0; n < RANGE_WARMUP_PASSES; n++) { in zend_infer_ranges_warmup()
1823 …LOG_SSA_RANGE(" change range (warmup %2d SCC %2d) %2d [%s%ld..%ld%s]\n", n, scc, j, (tmp.underflo… in zend_infer_ranges_warmup()
H A Dzend_ssa.c831 if (blocks[n].next_child >= 0) { in zend_ssa_rename()
837 if (ssa_blocks[n].phis) { in zend_ssa_rename()
838 zend_ssa_phi *phi = ssa_blocks[n].phis; in zend_ssa_rename()
851 opline = op_array->opcodes + blocks[n].start; in zend_ssa_rename()
852 end = opline + blocks[n].len; in zend_ssa_rename()
860 zend_ssa_op *fe_fetch_ssa_op = blocks[n].len != 0 in zend_ssa_rename()
863 ? &ssa_ops[blocks[n].start + blocks[n].len - 1] : NULL; in zend_ssa_rename()
865 int succ = blocks[n].successors[i]; in zend_ssa_rename()
868 if (p->pi == n) { in zend_ssa_rename()
900 if (p->pi == n) { in zend_ssa_rename()
[all …]
/php-src/Zend/
H A DZend.m4210 test -n "$GCC" && CFLAGS="-Wall -Wextra -Wno-unused-parameter -Wno-sign-compare $CFLAGS"
221 test -n "$DEBUG_CFLAGS" && CFLAGS="$CFLAGS $DEBUG_CFLAGS"
260 fprintf(fp, "(size_t)%zu (size_t)%d %d\n", ZEND_MM_ALIGNMENT, zeros, ZEND_MM_ALIGNMENT < 4);
H A Dbench.php106 $r = Ack(3,$n);
112 function ary($n) { argument
119 $last = $n-1;
125 function ary2($n) { argument
152 $last = $n-1;
158 function ary3($n) { argument
168 $last = $n-1;
175 return(($n < 2) ? 1 : fibo_r($n - 2) + fibo_r($n - 1));
179 $r = fibo_r($n);
220 $ir = $n;
[all …]
H A Dmicro_bench.php6 function simpleucall($n) { argument
7 for ($i = 0; $i < $n; $i++)
11 function simpleudcall($n) { argument
12 for ($i = 0; $i < $n; $i++)
19 function simpleicall($n) { argument
20 for ($i = 0; $i < $n; $i++)
119 function call($n) { argument
205 function issetor($n) { argument
212 function issetor2($n) { argument
219 function ternary($n) { argument
[all …]
/php-src/Zend/tests/
H A D001.phpt23 echo "Exception: " . $e->getMessage() . "\n";
32 echo "Exception: " . $e->getMessage() . "\n";
47 echo $exception->getMessage() . "\n";
50 echo "Done\n";
H A D002.phpt62 echo "Exception: " . $e->getMessage() . "\n";
70 echo "Exception: " . $e->getMessage() . "\n";
96 echo "Done\n";
H A D003.phpt24 echo "Exception: " . $e->getMessage() . "\n";
32 echo "Exception: " . $e->getMessage() . "\n";
H A D005.phpt14 echo "Done\n";
H A D008.phpt9 echo "TypeError: ", $e->getMessage(), "\n";
25 echo "Done\n";
H A D009.phpt15 echo $e->getMessage(), "\n";
32 echo $e->getMessage() . "\n";
41 echo $e->getMessage(), "\n";
46 echo $e->getMessage(), "\n";
54 echo "Done\n";
H A D010.phpt31 echo $e->getMessage() . "\n";
48 echo $exception->getMessage() . "\n";
54 echo $exception->getMessage() . "\n";
60 echo $exception->getMessage() . "\n";
68 echo $exception->getMessage() . "\n";
74 echo $exception->getMessage() . "\n";
77 echo "Done\n";

Completed in 69 milliseconds

12345678910>>...404