Searched refs:LONG_MIN (Results 1 – 11 of 11) sorted by relevance
/PHP-7.2/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)); 16 LONG_MIN ~== ceil(LONG_MIN - 0.5) 17 LONG_MIN+1 ~== ceil(LONG_MIN + 0.5) 18 LONG_MIN-1 ~== round(LONG_MIN - 0.6) 19 LONG_MIN ~== round(LONG_MIN - 0.4) 20 LONG_MIN ~== round(LONG_MIN + 0.4) 21 LONG_MIN+1 ~== round(LONG_MIN + 0.6) 22 LONG_MIN-1 ~== floor(LONG_MIN - 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)); 126 LONG_MIN+1 === pow(LONG_MIN+1,1) 128 (LONG_MIN+1)*(LONG_MIN+1) ~== pow(LONG_MIN+1,2) 130 (float)(LONG_MIN+1) === pow(LONG_MIN+1,1.0) 132 (LONG_MIN+1)*(LONG_MIN+1) ~== pow(LONG_MIN+1,2.0) 134 LONG_MIN === pow(LONG_MIN,1) 136 LONG_MIN*LONG_MIN ~== pow(LONG_MIN,2) 138 (float)LONG_MIN === pow(LONG_MIN,1.0) [all …]
|
H A D | abs.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)); 16 -LONG_MIN+1 === abs(LONG_MIN-1) 17 -LONG_MIN === abs(LONG_MIN) 18 -(LONG_MIN+1) === abs(LONG_MIN+1)
|
/PHP-7.2/tests/lang/ |
H A D | bug24054.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));
|
/PHP-7.2/ext/date/lib/ |
H A D | timelib_private.h | 135 #ifndef LONG_MIN 136 #define LONG_MIN (- LONG_MAX - 1) macro
|
/PHP-7.2/ext/calendar/ |
H A D | julian.c | 171 if (sdn > (LONG_MAX - JULIAN_SDN_OFFSET * 4 + 1) / 4 || sdn < LONG_MIN / 4) { in SdnToJulian()
|
/PHP-7.2/main/ |
H A D | php.h | 281 #ifndef LONG_MIN 282 #define LONG_MIN (- LONG_MAX - 1) macro
|
/PHP-7.2/Zend/ |
H A D | zend_portability.h | 421 #ifndef LONG_MIN 422 # define LONG_MIN (- LONG_MAX - 1) macro
|
H A D | Zend.m4 | 118 double d = (double) LONG_MIN * LONG_MIN + 2e9; 124 double correct = 18e18 - ((double) LONG_MIN * -2); /* Subtract ULONG_MAX + 1 */
|
/PHP-7.2/ext/zip/lib/ |
H A D | zipint.h | 156 #define ZIP_FSEEK_MIN LONG_MIN
|
/PHP-7.2/ |
H A D | README.PARAMETER_PARSING_API | 62 …L - long, limits out-of-range numbers to LONG_MAX/LONG_MIN (zend_long, ZEND_LONG_MAX/ZEND_LONG_MI…
|
Completed in 22 milliseconds