Home
last modified time | relevance | path

Searched refs:ZEND_LONG_MIN (Results 1 – 18 of 18) sorted by relevance

/PHP-7.0/Zend/
H A Dzend_long.h38 # define ZEND_LONG_MIN INT64_MIN macro
48 # define ZEND_LONG_MIN INT32_MIN macro
H A Dzend_operators.h97 # define ZEND_DOUBLE_FITS_LONG(d) (!((d) > ZEND_LONG_MAX || (d) < ZEND_LONG_MIN))
100 # define ZEND_DOUBLE_FITS_LONG(d) (!((d) >= ZEND_LONG_MAX || (d) < ZEND_LONG_MIN))
502 if (UNEXPECTED(Z_LVAL_P(op1) == ZEND_LONG_MIN)) { in fast_long_decrement_function()
504 ZVAL_DOUBLE(op1, (double)ZEND_LONG_MIN - 1.0); in fast_long_decrement_function()
H A Dzend_multiply.h96 if (__result > ZEND_LONG_MAX || __result < ZEND_LONG_MIN) { \
H A Dzend_operators.c1168 } else if (Z_LVAL_P(op2) == -1 && Z_LVAL_P(op1) == ZEND_LONG_MIN) { in div_function()
1170 ZVAL_DOUBLE(result, (double) ZEND_LONG_MIN / -1); in div_function()
2428 if (lval == ZEND_LONG_MIN) { in decrement_function()
H A Dzend_API.c370 *dest = (Z_DVAL_P(arg) > 0) ? ZEND_LONG_MAX : ZEND_LONG_MIN; in zend_parse_arg_long_cap_weak()
384 *dest = (d > 0) ? ZEND_LONG_MAX : ZEND_LONG_MIN; in zend_parse_arg_long_cap_weak()
/PHP-7.0/ext/intl/collator/
H A Dcollator_is_numeric.c187 cutoff = neg ? -(zend_ulong)ZEND_LONG_MIN : ZEND_LONG_MAX;
211 acc = neg ? ZEND_LONG_MIN : ZEND_LONG_MAX;
/PHP-7.0/ext/intl/formatter/
H A Dformatter_parse.c89 if(val64 > ZEND_LONG_MAX || val64 < ZEND_LONG_MIN) { in PHP_FUNCTION()
/PHP-7.0/ext/standard/
H A Dmath.c314 if (Z_LVAL_P(value) == ZEND_LONG_MIN) { in PHP_FUNCTION()
315 RETURN_DOUBLE(-(double)ZEND_LONG_MIN); in PHP_FUNCTION()
1305 } else if (divisor == -1 && dividend == ZEND_LONG_MIN) { in PHP_FUNCTION()
H A Darray.c5009 if ( (double)ZEND_LONG_MIN <= dval && dval <= (double)ZEND_LONG_MAX ) {
/PHP-7.0/ext/interbase/
H A Dphp_ibase_udf.c253 if (argv[i]->dsc_scale == 0 && l <= ZEND_LONG_MAX && l >= ZEND_LONG_MIN) { in call_php()
H A Dinterbase.c1461 if (result < ZEND_LONG_MIN || result > ZEND_LONG_MAX) { in PHP_FUNCTION()
/PHP-7.0/ext/filter/
H A Dlogical_filters.c123 } else if ( sign && ctx_value >= (ZEND_LONG_MIN+digit)/10) { in php_filter_parse_int()
/PHP-7.0/
H A DREADME.PARAMETER_PARSING_API62 … - long, limits out-of-range numbers to LONG_MAX/LONG_MIN (zend_long, ZEND_LONG_MAX/ZEND_LONG_MIN)
H A DUPGRADING.INTERNALS117 …- ZEND_LONG_MIN replaces LONG_MIN where appr…
/PHP-7.0/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c613 if (Z_DVAL(tmp_data_copy) > ZEND_LONG_MAX || Z_DVAL(tmp_data_copy) < ZEND_LONG_MIN) { in mysqlnd_stmt_execute_prepare_param_types()
/PHP-7.0/main/
H A Dmain.c2162 REGISTER_MAIN_LONG_CONSTANT("PHP_INT_MIN", ZEND_LONG_MIN, CONST_PERSISTENT | CONST_CS); in php_module_startup()
/PHP-7.0/ext/sqlite3/
H A Dsqlite3.c595 if (val > ZEND_LONG_MAX || val < ZEND_LONG_MIN) {
/PHP-7.0/ext/date/
H A Dphp_date.c3900 zend_long timestamp_begin = ZEND_LONG_MIN, timestamp_end = ZEND_LONG_MAX; in PHP_FUNCTION()
3933 if (timestamp_begin == ZEND_LONG_MIN) { in PHP_FUNCTION()

Completed in 80 milliseconds