/PHP-7.4/ext/standard/tests/math/ |
H A D | round.phpt | 7 define('LONG_MIN', -LONG_MAX - 1); 8 printf("%d,%d,%d,%d\n",is_int(LONG_MIN ),is_int(LONG_MAX ), 9 is_int(LONG_MIN-1),is_int(LONG_MAX+1)); 24 LONG_MAX ~== ceil(LONG_MAX - 0.5) 25 LONG_MAX+1 ~== ceil(LONG_MAX + 0.5) 26 LONG_MAX-1 ~== round(LONG_MAX - 0.6) 27 LONG_MAX ~== round(LONG_MAX - 0.4) 28 LONG_MAX ~== round(LONG_MAX + 0.4) 29 LONG_MAX+1 ~== round(LONG_MAX + 0.6) 30 LONG_MAX-1 ~== floor(LONG_MAX - 0.5) [all …]
|
H A D | pow.phpt | 7 define('LONG_MIN', -LONG_MAX - 1); 8 printf("%d,%d,%d,%d\n",is_int(LONG_MIN ),is_int(LONG_MAX ), 9 is_int(LONG_MIN-1),is_int(LONG_MAX+1)); 125 LONG_MAX-1 === pow(LONG_MAX-1,1) 127 (LONG_MAX-1)*(LONG_MAX-1) ~== pow(LONG_MAX-1,2) 129 (float)(LONG_MAX-1) === pow(LONG_MAX-1,1.0) 131 (LONG_MAX-1)*(LONG_MAX-1) ~== pow(LONG_MAX-1,2.0) 133 LONG_MAX === pow(LONG_MAX,1) 135 LONG_MAX*LONG_MAX ~== pow(LONG_MAX,2) 137 (float)LONG_MAX === pow(LONG_MAX,1.0) [all …]
|
H A D | abs.phpt | 6 define('LONG_MAX', is_int(5000000000)? 9223372036854775807 : 0x7FFFFFFF); 7 define('LONG_MIN', -LONG_MAX - 1); 8 printf("%d,%d,%d,%d\n",is_int(LONG_MIN ),is_int(LONG_MAX ), 9 is_int(LONG_MIN-1),is_int(LONG_MAX+1));
|
/PHP-7.4/tests/lang/ |
H A D | bug24054.phpt | 6 define('LONG_MAX', is_int(5000000000)? 9223372036854775807 : 0x7FFFFFFF); 7 define('LONG_MIN', -LONG_MAX - 1); 8 printf("%d,%d,%d,%d\n",is_int(LONG_MIN ),is_int(LONG_MAX ), 9 is_int(LONG_MIN-1),is_int(LONG_MAX+1)); 11 $i = LONG_MAX;
|
/PHP-7.4/ext/date/lib/ |
H A D | timelib_private.h | 122 #ifndef LONG_MAX 123 #define LONG_MAX 2147483647L macro 127 #define LONG_MIN (- LONG_MAX - 1)
|
/PHP-7.4/ext/bcmath/libbcmath/src/ |
H A D | num2long.c | 59 if (val > LONG_MAX/BASE) { 64 if (val > LONG_MAX - n) {
|
H A D | bcmath.h | 84 #ifndef LONG_MAX 85 #define LONG_MAX 0x7ffffff macro
|
/PHP-7.4/Zend/tests/ |
H A D | bug54547.phpt | 2 Bug #54547: wrong equality of string numbers near LONG_MAX with 64-bit longs
|
/PHP-7.4/ext/calendar/ |
H A D | gregor.c | 151 sdn > (LONG_MAX - 4 * GREGOR_SDN_OFFSET) / 4) { in SdnToGregorian()
|
H A D | julian.c | 171 if (sdn > (LONG_MAX - JULIAN_SDN_OFFSET * 4 + 1) / 4 || sdn < LONG_MIN / 4) { in SdnToJulian()
|
/PHP-7.4/main/ |
H A D | php.h | 242 #ifndef LONG_MAX 243 #define LONG_MAX 2147483647L macro 247 #define LONG_MIN (- LONG_MAX - 1)
|
/PHP-7.4/ext/soap/tests/bugs/ |
H A D | bug36999.phpt | 2 Bug #36999 (xsd:long values clamped to LONG_MAX instead of using double)
|
/PHP-7.4/ext/intl/dateformat/ |
H A D | dateformat_parse.c | 57 if(result > LONG_MAX || result < -LONG_MAX) { in internal_parse_to_timestamp()
|
/PHP-7.4/Zend/ |
H A D | zend_portability.h | 423 #ifndef LONG_MAX 424 # define LONG_MAX 2147483647L macro 428 # define LONG_MIN (- LONG_MAX - 1)
|
H A D | Zend.m4 | 172 if ((long) 18e18 == correct) { /* On 64-bit, only check between LONG_MAX and ULONG_MAX */
|
H A D | zend_strtod.c | 283 #ifndef LONG_MAX 284 #define LONG_MAX 2147483647 macro
|
/PHP-7.4/ext/mysqli/tests/ |
H A D | bug52891.phpt | 2 Bug #52891 (Wrong data inserted with mysqli/mysqlnd when using bind_param,value > LONG_MAX)
|
/PHP-7.4/docs/ |
H A D | parameter-parsing-api.md | 78 L - long, limits out-of-range numbers to LONG_MAX/LONG_MIN (zend_long, ZEND_LONG_MAX/ZEND_LONG_MIN)
|
/PHP-7.4/ext/oci8/ |
H A D | oci8_lob.c | 102 if (connection->descriptor_count == LONG_MAX) { in php_oci_lob_create()
|
/PHP-7.4/ext/sqlite3/ |
H A D | sqlite3.c | 645 #if LONG_MAX <= 2147483647 in sqlite_value_to_zval() 651 #if LONG_MAX <= 2147483647 in sqlite_value_to_zval()
|
/PHP-7.4/main/streams/ |
H A D | userspace.c | 1014 if (new_size >= 0 && new_size <= (ptrdiff_t)LONG_MAX) { in php_userstreamop_set_option()
|
/PHP-7.4/ext/fileinfo/libmagic/ |
H A D | apprentice.c | 284 return CAST(off_t, LONG_MAX); in maxoff_t()
|
/PHP-7.4/ext/sodium/ |
H A D | libsodium.c | 3516 if (ret != 0 || unpadded_len > LONG_MAX) { in PHP_FUNCTION()
|
/PHP-7.4/ |
H A D | NEWS | 2654 . Fixed bug #76574 (use of undeclared identifiers INT_MAX and LONG_MAX). (cmb)
|