Lines Matching refs:lstep
2700 zend_ulong __calc_size = ((zend_ulong) start - end) / lstep; \
2739 zend_long lstep = (zend_long) step; local
2754 if (low - high < lstep || lstep <= 0) {
2759 array_init_size(return_value, (uint32_t)(((low - high) / lstep) + 1));
2762 for (; low >= high; low -= (unsigned int)lstep) {
2765 if (((signed int)low - lstep) < 0) {
2771 if (high - low < lstep || lstep <= 0) {
2775 array_init_size(return_value, (uint32_t)(((high - low) / lstep) + 1));
2778 for (; low <= high; low += (unsigned int)lstep) {
2781 if (((signed int)low + lstep) > 255) {
2839 zend_ulong lstep; local
2850 lstep = (zend_ulong)step;
2857 if ((zend_ulong)low - high < lstep) {
2866 ZEND_HASH_FILL_SET_LONG(low - (i * lstep));
2871 if ((zend_ulong)high - low < lstep) {
2880 ZEND_HASH_FILL_SET_LONG(low + (i * lstep));