Home
last modified time | relevance | path

Searched refs:start_long (Results 1 – 1 of 1) sorted by last modified time

/php-src/ext/standard/
H A Darray.c3017 zend_long start_long; local
3022 start_type = php_range_process_input(user_start, 1, &start_long, &start_double);
3162 if (start_long > end_long) {
3163 if ((zend_ulong)start_long - end_long < unsigned_step) {
3167 RANGE_CHECK_LONG_INIT_ARRAY(start_long, end_long, unsigned_step);
3171 ZEND_HASH_FILL_SET_LONG(start_long - (i * unsigned_step));
3175 } else if (end_long > start_long) { /* Increasing int range */
3179 if ((zend_ulong)end_long - start_long < unsigned_step) {
3183 RANGE_CHECK_LONG_INIT_ARRAY(end_long, start_long, unsigned_step);
3187 ZEND_HASH_FILL_SET_LONG(start_long + (i * unsigned_step));
[all …]

Completed in 18 milliseconds