Lines Matching refs:low

1656 		unsigned char *low, *high;  in PHP_FUNCTION()  local
1670 low = (unsigned char *)Z_STRVAL_P(zlow); in PHP_FUNCTION()
1673 if (*low > *high) { /* Negative Steps */ in PHP_FUNCTION()
1674 unsigned char ch = *low; in PHP_FUNCTION()
1686 } else if (*high > *low) { /* Positive Steps */ in PHP_FUNCTION()
1687 unsigned char ch = *low; in PHP_FUNCTION()
1700 add_next_index_stringl(return_value, (const char *)low, 1, 1); in PHP_FUNCTION()
1704 double low, high, value; in PHP_FUNCTION() local
1709 low = Z_DVAL_P(zlow); in PHP_FUNCTION()
1713 if (low > high) { /* Negative steps */ in PHP_FUNCTION()
1714 if (low - high < step || step <= 0) { in PHP_FUNCTION()
1719 for (value = low; value >= (high - DOUBLE_DRIFT_FIX); value = low - (++i * step)) { in PHP_FUNCTION()
1722 } else if (high > low) { /* Positive steps */ in PHP_FUNCTION()
1723 if (high - low < step || step <= 0) { in PHP_FUNCTION()
1728 for (value = low; value <= (high + DOUBLE_DRIFT_FIX); value = low + (++i * step)) { in PHP_FUNCTION()
1732 add_next_index_double(return_value, low); in PHP_FUNCTION()
1735 double low, high; in PHP_FUNCTION() local
1740 low = Z_DVAL_P(zlow); in PHP_FUNCTION()
1744 if (low > high) { /* Negative steps */ in PHP_FUNCTION()
1745 if (low - high < lstep || lstep <= 0) { in PHP_FUNCTION()
1749 for (; low >= high; low -= lstep) { in PHP_FUNCTION()
1750 add_next_index_long(return_value, (long)low); in PHP_FUNCTION()
1752 } else if (high > low) { /* Positive steps */ in PHP_FUNCTION()
1753 if (high - low < lstep || lstep <= 0) { in PHP_FUNCTION()
1757 for (; low <= high; low += lstep) { in PHP_FUNCTION()
1758 add_next_index_long(return_value, (long)low); in PHP_FUNCTION()
1761 add_next_index_long(return_value, (long)low); in PHP_FUNCTION()