Lines Matching refs:start_double
2906 double start_double; local
2912 start_type = php_range_process_input(user_start, 1, &start_long, &start_double);
3011 if (start_double > end_double) {
3012 if (start_double - end_double < step_double) {
3016 RANGE_CHECK_DOUBLE_INIT_ARRAY(start_double, end_double, step_double);
3019 …for (i = 0, element = start_double; i < size && element >= end_double; ++i, element = start_double…
3024 } else if (end_double > start_double) { /* Increasing float range */
3028 if (end_double - start_double < step_double) {
3032 RANGE_CHECK_DOUBLE_INIT_ARRAY(end_double, start_double, step_double);
3035 …for (i = 0, element = start_double; i < size && element <= end_double; ++i, element = start_double…
3042 ZVAL_DOUBLE(&tmp, start_double);