lstep 2081 ext/standard/array.c zend_ulong __calc_size = (start - end) / lstep; \ lstep 2122 ext/standard/array.c zend_long lstep = (zend_long) step; lstep 2137 ext/standard/array.c if (lstep <= 0) { lstep 2142 ext/standard/array.c array_init_size(return_value, (uint32_t)(((low - high) / lstep) + 1)); lstep 2145 ext/standard/array.c for (; low >= high; low -= (unsigned int)lstep) { lstep 2152 ext/standard/array.c if (((signed int)low - lstep) < 0) { lstep 2158 ext/standard/array.c if (lstep <= 0) { lstep 2162 ext/standard/array.c array_init_size(return_value, (uint32_t)(((high - low) / lstep) + 1)); lstep 2165 ext/standard/array.c for (; low <= high; low += (unsigned int)lstep) { lstep 2172 ext/standard/array.c if (((signed int)low + lstep) > 255) { lstep 2235 ext/standard/array.c zend_ulong lstep; lstep 2246 ext/standard/array.c lstep = step; lstep 2250 ext/standard/array.c if (low - high < lstep) { lstep 2259 ext/standard/array.c Z_LVAL(tmp) = low - (i * lstep); lstep 2264 ext/standard/array.c if (high - low < lstep) { lstep 2273 ext/standard/array.c Z_LVAL(tmp) = low + (i * lstep);