Searched refs:start_double (Results 1 – 1 of 1) sorted by relevance
/php-src/ext/standard/ |
H A D | array.c | 3015 double start_double; local 3021 start_type = php_range_process_input(user_start, 1, &start_long, &start_double); 3120 if (start_double > end_double) { 3121 if (start_double - end_double < step_double) { 3125 RANGE_CHECK_DOUBLE_INIT_ARRAY(start_double, end_double, step_double); 3128 …for (i = 0, element = start_double; i < size && element >= end_double; ++i, element = start_double… 3133 } else if (end_double > start_double) { /* Increasing float range */ 3137 if (end_double - start_double < step_double) { 3141 RANGE_CHECK_DOUBLE_INIT_ARRAY(end_double, start_double, step_double); 3144 …for (i = 0, element = start_double; i < size && element <= end_double; ++i, element = start_double… [all …]
|
Completed in 39 milliseconds