Home
last modified time | relevance | path

Searched refs:ZEND_LONG_MAX (Results 1 – 25 of 31) sorted by relevance

12

/PHP-7.0/Zend/
H A Dzend_long.h37 # define ZEND_LONG_MAX INT64_MAX macro
47 # define ZEND_LONG_MAX INT32_MAX 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))
464 if (UNEXPECTED(Z_LVAL_P(op1) == ZEND_LONG_MAX)) { in fast_long_increment_function()
466 ZVAL_DOUBLE(op1, (double)ZEND_LONG_MAX + 1.0); in fast_long_increment_function()
H A Dzend_multiply.h96 if (__result > ZEND_LONG_MAX || __result < ZEND_LONG_MIN) { \
H A Dzend_hash.c747 ht->nNextFreeElement = h < ZEND_LONG_MAX ? h + 1 : ZEND_LONG_MAX; in _zend_hash_index_add_or_update_i()
784 ht->nNextFreeElement = h < ZEND_LONG_MAX ? h + 1 : ZEND_LONG_MAX; in _zend_hash_index_add_or_update_i()
810 ht->nNextFreeElement = h < ZEND_LONG_MAX ? h + 1 : ZEND_LONG_MAX; in _zend_hash_index_add_or_update_i()
827 ht->nNextFreeElement = h < ZEND_LONG_MAX ? h + 1 : ZEND_LONG_MAX; in _zend_hash_index_add_or_update_i()
2489 if (*idx-1 > ZEND_LONG_MAX) { /* overflow */ in _zend_handle_numeric_str_ex()
2493 } else if (*idx > ZEND_LONG_MAX) { /* overflow */ in _zend_handle_numeric_str_ex()
/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/mysqli/
H A Dmysqli_priv.h101 if ((__val) < ZEND_LONG_MAX) { \
H A Dmysqli_prop.c84 if (l < ZEND_LONG_MAX) {\
170 if (rc < ZEND_LONG_MAX) { in link_affected_rows_read()
357 if (rc < ZEND_LONG_MAX) { in stmt_affected_rows_read()
/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.c846 return ZEND_LONG_MAX; in _php_math_basetolong()
874 cutoff = ZEND_LONG_MAX / base; in _php_math_basetozval()
875 cutlim = ZEND_LONG_MAX % base; in _php_math_basetozval()
H A Dfile.c631 if (len > ZEND_LONG_MAX) { in PHP_FUNCTION()
632 …cref(NULL, E_WARNING, "content truncated from %zu to " ZEND_LONG_FMT " bytes", len, ZEND_LONG_MAX); in PHP_FUNCTION()
633 len = ZEND_LONG_MAX; in PHP_FUNCTION()
H A Dfilestat.c1211 if (ZEND_LONG_MAX >= bucket->key) { in PHP_FUNCTION()
/PHP-7.0/ext/pdo/
H A Dpdo.c330 while ((pdo_uint64_t)i64 > (pdo_uint64_t)ZEND_LONG_MAX) { in php_pdo_int64_to_str()
/PHP-7.0/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp669 if(aInt64 > ZEND_LONG_MAX || aInt64 < -ZEND_LONG_MAX) { in umsg_parse_helper()
/PHP-7.0/ext/pdo_sqlite/
H A Dsqlite_statement.c121 #if ZEND_LONG_MAX > 2147483647 in pdo_sqlite_stmt_param_hook()
/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/sockets/
H A Dsendrecvmsg.c307 if (entry->var_el_size > 0 && n > (ZEND_LONG_MAX - (zend_long)entry->size - in PHP_FUNCTION()
/PHP-7.0/ext/sqlite3/
H A Dsqlite3.c595 if (val > ZEND_LONG_MAX || val < ZEND_LONG_MIN) {
742 #if ZEND_LONG_MAX > 2147483647
792 #if ZEND_LONG_MAX > 2147483647
1571 #if ZEND_LONG_MAX > 2147483647
/PHP-7.0/ext/filter/
H A Dlogical_filters.c121 if ( (!sign) && ctx_value <= (ZEND_LONG_MAX-digit)/10 ) { in php_filter_parse_int()
/PHP-7.0/
H A DREADME.PARAMETER_PARSING_API62 …L - long, limits out-of-range numbers to LONG_MAX/LONG_MIN (zend_long, ZEND_LONG_MAX/ZEND_LONG_MI…
H A DUPGRADING.INTERNALS116 …- ZEND_LONG_MAX replaces LONG_MAX where appr…
/PHP-7.0/ext/pgsql/
H A Dpgsql.c69 #if ZEND_LONG_MAX < UINT_MAX
71 if (oid > ZEND_LONG_MAX) { \
2430 #if UINT_MAX > ZEND_LONG_MAX /* Oid is unsigned int, we don't need this code, where LONG is wider */
2431 if (oid > ZEND_LONG_MAX) {
2535 #if UINT_MAX > ZEND_LONG_MAX
2536 if (oid > ZEND_LONG_MAX) {
/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 Drfc1867.c1252 if (total_bytes > ZEND_LONG_MAX) {
/PHP-7.0/ext/opcache/
H A Dzend_file_cache.c811 if (ZEND_LONG_MAX < (zend_long)(sizeof(info) + script->size + info.str_size) || in zend_file_cache_script_store()

Completed in 89 milliseconds

12