Home
last modified time | relevance | path

Searched refs:range (Results 26 – 50 of 313) sorted by path

12345678910>>...13

/php-src/Zend/tests/
H A Dlive_range_phi_leak.phpt2 Missing live range if part of phi
H A Dmemory_get_peak_usage.phpt19 $array = range(1,1024*1024);
H A Dmemory_reset_peak_usage.phpt13 $array0 = range(1, 1024 * 1024);
15 $array1 = range(1, 1024 * 1024);
H A Dtemporary_cleaning_009.phpt2 Live range & free on return
H A Dtemporary_cleaning_010.phpt2 Live range & throw from finally
H A Dtemporary_cleaning_011.phpt2 Live range & lists
H A Dtemporary_cleaning_012.phpt2 Live range of ZEND_NEW must be assigned to correct variable
H A Dtemporary_cleaning_017.phpt2 Live range & free on return & TMP var of RETURN opcode
/php-src/Zend/tests/match/
H A D017.phpt26 foreach (range(0, 9) as $int) {
47 foreach (range(0, 9) as $int) {
/php-src/Zend/tests/traits/
H A Dbug55372.phpt9 $letters1 = range('a', 'z', 1);
10 $letters2 = range('A', 'Z', 1);
/php-src/Zend/tests/try/
H A Dtry_finally_021.phpt2 Live range & return from finally
/php-src/Zend/tests/zend_ini/
H A Dzend_ini_parse_quantity_overflow.phpt81 Warning: Invalid quantity "%d": value is out of range, using overflow result for backwards compatib…
87 Warning: Invalid quantity "-%d": value is out of range, using overflow result for backwards compati…
93 Warning: Invalid quantity "%dK": value is out of range, using overflow result for backwards compati…
99 Warning: Invalid quantity "-%dK": value is out of range, using overflow result for backwards compat…
H A Dzend_ini_parse_uquantity_overflow.phpt77 Warning: Invalid quantity "%d": value is out of range, using overflow result for backwards compatib…
83 Warning: Invalid quantity "-%d": value is out of range, using overflow result for backwards compati…
89 Warning: Invalid quantity "-%d": value is out of range, using overflow result for backwards compati…
95 Warning: Invalid quantity "-2": value is out of range, using overflow result for backwards compatib…
101 Warning: Invalid quantity "-1K": value is out of range, using overflow result for backwards compati…
107 Warning: Invalid quantity "-1 K": value is out of range, using overflow result for backwards compat…
113 Warning: Invalid quantity "%dK": value is out of range, using overflow result for backwards compati…
/php-src/Zend/
H A Dzend_execute.c4476 if (op_num >= range->start && op_num < range->end in find_live_range()
4477 && var_num == (range->var & ~ZEND_LIVE_MASK)) { in find_live_range()
4478 return range; in find_live_range()
4491 if (range->start > op_num) { in cleanup_live_vars()
4494 } else if (op_num < range->end) { in cleanup_live_vars()
4496 uint32_t kind = range->var & ZEND_LIVE_MASK; in cleanup_live_vars()
4497 uint32_t var_num = range->var & ~ZEND_LIVE_MASK; in cleanup_live_vars()
4616 if (range->start > op_num) { in zend_unfinished_execution_gc_ex()
4618 } else if (op_num < range->end) { in zend_unfinished_execution_gc_ex()
4619 uint32_t kind = range->var & ZEND_LIVE_MASK; in zend_unfinished_execution_gc_ex()
[all …]
H A Dzend_gc.c2056 const zend_live_range *range = &func->op_array.live_range[i]; in zend_gc_check_root_tmpvars() local
2057 if (range->start > op_num) { in zend_gc_check_root_tmpvars()
2060 if (range->end <= op_num) { in zend_gc_check_root_tmpvars()
2064 uint32_t kind = range->var & ZEND_LIVE_MASK; in zend_gc_check_root_tmpvars()
2066 uint32_t var_num = range->var & ~ZEND_LIVE_MASK; in zend_gc_check_root_tmpvars()
2086 const zend_live_range *range = &func->op_array.live_range[i]; in zend_gc_remove_root_tmpvars() local
2087 if (range->start > op_num) { in zend_gc_remove_root_tmpvars()
2090 if (range->end <= op_num) { in zend_gc_remove_root_tmpvars()
2094 uint32_t kind = range->var & ZEND_LIVE_MASK; in zend_gc_remove_root_tmpvars()
2096 uint32_t var_num = range->var & ~ZEND_LIVE_MASK; in zend_gc_remove_root_tmpvars()
H A Dzend_opcode.c715 zend_live_range *range; in emit_live_range_raw() local
722 range = &op_array->live_range[op_array->last_live_range - 1]; in emit_live_range_raw()
723 range->var = EX_NUM_TO_VAR(op_array->last_var + var_num); in emit_live_range_raw()
724 range->var |= kind; in emit_live_range_raw()
725 range->start = start; in emit_live_range_raw()
726 range->end = end; in emit_live_range_raw()
H A Dzend_vm_def.h8057 const zend_live_range *range = find_live_range(
8060 for (i = throw_op_num; i < range->end; i++) {
8072 throw_op_num = range->end;
H A Dzend_vm_execute.h3237 const zend_live_range *range = find_live_range( in ZEND_HANDLE_EXCEPTION_SPEC_HANDLER() local
3240 for (i = throw_op_num; i < range->end; i++) { in ZEND_HANDLE_EXCEPTION_SPEC_HANDLER()
3252 throw_op_num = range->end; in ZEND_HANDLE_EXCEPTION_SPEC_HANDLER()
/php-src/build/
H A Dphp_cxx_compile_stdcxx.m4714 struct range
729 range r {};
/php-src/docs-old/
H A Dstreams.md71 streams there are a range of functions to do this defined in `php_streams.h`. A
/php-src/ext/bcmath/libbcmath/
H A DLICENSE400 generous contributions to the wide range of software distributed
/php-src/ext/calendar/tests/
H A Djdtojewish.phpt45 Year out of range (0-9999)
/php-src/ext/com_dotnet/tests/
H A Dgh8750a.phpt9 // explicit variant_cast() to int is supported if in range
H A Dvariants.phpt621 exception Out of present range
H A Dvariants_x64.phpt624 exception Out of present range

Completed in 176 milliseconds

12345678910>>...13