Lines Matching refs:low

1626 		unsigned char *low, *high;  in PHP_FUNCTION()  local
1640 low = (unsigned char *)Z_STRVAL_P(zlow); in PHP_FUNCTION()
1643 if (*low > *high) { /* Negative Steps */ in PHP_FUNCTION()
1644 unsigned char ch = *low; in PHP_FUNCTION()
1656 } else if (*high > *low) { /* Positive Steps */ in PHP_FUNCTION()
1657 unsigned char ch = *low; in PHP_FUNCTION()
1670 add_next_index_stringl(return_value, (const char *)low, 1, 1); in PHP_FUNCTION()
1674 double low, high, value; in PHP_FUNCTION() local
1679 low = Z_DVAL_P(zlow); in PHP_FUNCTION()
1683 if (low > high) { /* Negative steps */ in PHP_FUNCTION()
1684 if (low - high < step || step <= 0) { in PHP_FUNCTION()
1689 for (value = low; value >= (high - DOUBLE_DRIFT_FIX); value = low - (++i * step)) { in PHP_FUNCTION()
1692 } else if (high > low) { /* Positive steps */ in PHP_FUNCTION()
1693 if (high - low < step || step <= 0) { in PHP_FUNCTION()
1698 for (value = low; value <= (high + DOUBLE_DRIFT_FIX); value = low + (++i * step)) { in PHP_FUNCTION()
1702 add_next_index_double(return_value, low); in PHP_FUNCTION()
1705 double low, high; in PHP_FUNCTION() local
1710 low = Z_DVAL_P(zlow); in PHP_FUNCTION()
1714 if (low > high) { /* Negative steps */ in PHP_FUNCTION()
1715 if (low - high < lstep || lstep <= 0) { in PHP_FUNCTION()
1719 for (; low >= high; low -= lstep) { in PHP_FUNCTION()
1720 add_next_index_long(return_value, (long)low); in PHP_FUNCTION()
1722 } else if (high > low) { /* Positive steps */ in PHP_FUNCTION()
1723 if (high - low < lstep || lstep <= 0) { in PHP_FUNCTION()
1727 for (; low <= high; low += lstep) { in PHP_FUNCTION()
1728 add_next_index_long(return_value, (long)low); in PHP_FUNCTION()
1731 add_next_index_long(return_value, (long)low); in PHP_FUNCTION()