Lines Matching refs:low

1621 		unsigned char *low, *high;  in PHP_FUNCTION()  local
1635 low = (unsigned char *)Z_STRVAL_P(zlow); in PHP_FUNCTION()
1638 if (*low > *high) { /* Negative Steps */ in PHP_FUNCTION()
1639 unsigned char ch = *low; in PHP_FUNCTION()
1651 } else if (*high > *low) { /* Positive Steps */ in PHP_FUNCTION()
1652 unsigned char ch = *low; in PHP_FUNCTION()
1665 add_next_index_stringl(return_value, (const char *)low, 1, 1); in PHP_FUNCTION()
1669 double low, high, value; in PHP_FUNCTION() local
1674 low = Z_DVAL_P(zlow); in PHP_FUNCTION()
1678 if (low > high) { /* Negative steps */ in PHP_FUNCTION()
1679 if (low - high < step || step <= 0) { in PHP_FUNCTION()
1684 for (value = low; value >= (high - DOUBLE_DRIFT_FIX); value = low - (++i * step)) { in PHP_FUNCTION()
1687 } else if (high > low) { /* Positive steps */ in PHP_FUNCTION()
1688 if (high - low < step || step <= 0) { in PHP_FUNCTION()
1693 for (value = low; value <= (high + DOUBLE_DRIFT_FIX); value = low + (++i * step)) { in PHP_FUNCTION()
1697 add_next_index_double(return_value, low); in PHP_FUNCTION()
1700 double low, high; in PHP_FUNCTION() local
1705 low = Z_DVAL_P(zlow); in PHP_FUNCTION()
1709 if (low > high) { /* Negative steps */ in PHP_FUNCTION()
1710 if (low - high < lstep || lstep <= 0) { in PHP_FUNCTION()
1714 for (; low >= high; low -= lstep) { in PHP_FUNCTION()
1715 add_next_index_long(return_value, (long)low); in PHP_FUNCTION()
1717 } else if (high > low) { /* Positive steps */ in PHP_FUNCTION()
1718 if (high - low < lstep || lstep <= 0) { in PHP_FUNCTION()
1722 for (; low <= high; low += lstep) { in PHP_FUNCTION()
1723 add_next_index_long(return_value, (long)low); in PHP_FUNCTION()
1726 add_next_index_long(return_value, (long)low); in PHP_FUNCTION()