Home
last modified time | relevance | path

Searched refs:LONG_MAX (Results 1 – 25 of 54) sorted by path

123

/PHP-5.5/
H A DREADME.PARAMETER_PARSING_API62 L - long, limits out-of-range numbers to LONG_MAX/LONG_MIN (long)
/PHP-5.5/Zend/
H A DZend.m4126 if ((long) 18e18 == correct) { /* On 64-bit, only check between LONG_MAX and ULONG_MAX */
H A Dzend.h261 #ifndef LONG_MAX
262 #define LONG_MAX 2147483647L macro
266 #define LONG_MIN (- LONG_MAX - 1)
H A Dzend_API.c344 if (d > LONG_MAX) { in zend_parse_arg_impl()
345 *p = LONG_MAX; in zend_parse_arg_impl()
360 if (Z_DVAL_PP(arg) > LONG_MAX) { in zend_parse_arg_impl()
361 *p = LONG_MAX; in zend_parse_arg_impl()
H A Dzend_hash.c403 ht->nNextFreeElement = h < LONG_MAX ? h + 1 : LONG_MAX; in _zend_hash_index_update_or_next_insert()
432 ht->nNextFreeElement = h < LONG_MAX ? h + 1 : LONG_MAX; in _zend_hash_index_update_or_next_insert()
1419 ht->nNextFreeElement = num_index < LONG_MAX ? num_index + 1 : LONG_MAX; in zend_hash_update_current_key_ex()
H A Dzend_hash.h333 if (idx-1 > LONG_MAX) { /* overflow */ \ in END_EXTERN_C()
337 } else if (idx > LONG_MAX) { /* overflow */ \ in END_EXTERN_C()
H A Dzend_multiply.h75 if (__result > LONG_MAX || __result < LONG_MIN) { \
H A Dzend_operators.c1865 if (Z_LVAL_P(op1) == LONG_MAX) { in increment_function()
1886 if (lval == LONG_MAX) { in increment_function()
H A Dzend_operators.h78 if (d > LONG_MAX || d < LONG_MIN) { in END_EXTERN_C()
96 if (d >= LONG_MAX || d < LONG_MIN) {
536 if (UNEXPECTED(Z_LVAL_P(op1) == LONG_MAX)) { in fast_increment_function()
538 Z_DVAL_P(op1) = (double)LONG_MAX + 1.0; in fast_increment_function()
H A Dzend_strtod.c242 #ifndef LONG_MAX
243 #define LONG_MAX 2147483647 macro
/PHP-5.5/Zend/tests/
H A Dbug54547.phpt2 Bug #54547: wrong equality of string numbers near LONG_MAX with 64-bit longs
/PHP-5.5/ext/bcmath/libbcmath/src/
H A Dbcmath.h85 #ifndef LONG_MAX
86 #define LONG_MAX 0x7ffffff macro
H A Dnum2long.c57 for (index=num->n_len; (index>0) && (val<=(LONG_MAX/BASE)); index--)
/PHP-5.5/ext/calendar/
H A Dgregor.c151 sdn > (LONG_MAX - 4 * GREGOR_SDN_OFFSET) / 4) { in SdnToGregorian()
H A Djulian.c171 if (sdn > (LONG_MAX - JULIAN_SDN_OFFSET * 4 + 1) / 4 || sdn < LONG_MIN / 4) { in SdnToJulian()
/PHP-5.5/ext/date/lib/
H A Dtimelib.c185 if (ts < LONG_MIN || ts > LONG_MAX) { in timelib_date_to_int()
H A Dtimelib.h44 #ifndef LONG_MAX
45 #define LONG_MAX 2147483647L macro
49 #define LONG_MIN (- LONG_MAX - 1)
/PHP-5.5/ext/date/
H A Dphp_date.c3874 long timestamp_begin = LONG_MIN, timestamp_end = LONG_MAX; in PHP_FUNCTION()
/PHP-5.5/ext/ereg/regex/
H A Dregcomp.c123 if (new_ssize < len || new_ssize > LONG_MAX / sizeof(sop)) {
/PHP-5.5/ext/filter/
H A Dlogical_filters.c104 if ( (!sign) && ctx_value <= (LONG_MAX-digit)/10 ) { in php_filter_parse_int()
/PHP-5.5/ext/interbase/
H A Dinterbase.c1458 if (result < LONG_MIN || result > LONG_MAX) { in PHP_FUNCTION()
H A Dphp_ibase_udf.c254 if (argv[i]->dsc_scale == 0 && l <= LONG_MAX && l >= LONG_MIN) { in call_php()
/PHP-5.5/ext/intl/collator/
H A Dcollator_is_numeric.c187 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
211 acc = neg ? LONG_MIN : LONG_MAX;
/PHP-5.5/ext/intl/dateformat/
H A Ddateformat_parse.c57 if(result > LONG_MAX || result < -LONG_MAX) { in internal_parse_to_timestamp()
/PHP-5.5/ext/intl/formatter/
H A Dformatter_parse.c88 if(val64 > LONG_MAX || val64 < LONG_MIN) { in PHP_FUNCTION()

Completed in 109 milliseconds

123