/PHP-7.3/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.3/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.3/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.3/ext/bcmath/libbcmath/src/ |
H A D | num2long.c | 60 if (val > LONG_MAX/BASE) { 65 if (val > LONG_MAX - n) {
|
H A D | bcmath.h | 84 #ifndef LONG_MAX 85 #define LONG_MAX 0x7ffffff macro
|
/PHP-7.3/Zend/tests/ |
H A D | bug54547.phpt | 2 Bug #54547: wrong equality of string numbers near LONG_MAX with 64-bit longs
|
/PHP-7.3/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.3/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.3/ext/intl/dateformat/ |
H A D | dateformat_parse.c | 57 if(result > LONG_MAX || result < -LONG_MAX) { in internal_parse_to_timestamp()
|
/PHP-7.3/main/ |
H A D | php.h | 273 #ifndef LONG_MAX 274 #define LONG_MAX 2147483647L macro 278 #define LONG_MIN (- LONG_MAX - 1)
|
/PHP-7.3/Zend/ |
H A D | zend_portability.h | 428 #ifndef LONG_MAX 429 # define LONG_MAX 2147483647L macro 433 # define LONG_MIN (- LONG_MAX - 1)
|
H A D | Zend.m4 | 124 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.3/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.3/ext/zip/lib/ |
H A D | zipint.h | 155 #define ZIP_FSEEK_MAX LONG_MAX
|
/PHP-7.3/ |
H A D | README.PARAMETER_PARSING_API | 69 …L - long, limits out-of-range numbers to LONG_MAX/LONG_MIN (zend_long, ZEND_LONG_MAX/ZEND_LONG_MI…
|
H A D | NEWS | 1570 . Fixed bug #76574 (use of undeclared identifiers INT_MAX and LONG_MAX). (cmb)
|
/PHP-7.3/ext/oci8/ |
H A D | oci8_lob.c | 102 if (connection->descriptor_count == LONG_MAX) { in php_oci_lob_create()
|
/PHP-7.3/ext/sqlite3/ |
H A D | sqlite3.c | 595 #if LONG_MAX <= 2147483647 in sqlite_value_to_zval() 601 #if LONG_MAX <= 2147483647 in sqlite_value_to_zval()
|
/PHP-7.3/main/streams/ |
H A D | userspace.c | 998 if (new_size >= 0 && new_size <= (ptrdiff_t)LONG_MAX) { in php_userstreamop_set_option()
|
/PHP-7.3/ext/sodium/ |
H A D | libsodium.c | 3499 if (ret != 0 || unpadded_len > LONG_MAX) { in PHP_FUNCTION()
|
/PHP-7.3/ext/mbstring/oniguruma/src/ |
H A D | regparse.c | 6850 r = parse_long(enc, buf, bufend, 1, LONG_MAX, &rl); in parse_callout_args()
|