Searched refs:php_date_llabs (Results 1 – 1 of 1) sorted by relevance
/PHP-8.3/ext/date/ |
H A D | php_date.c | 37 static __inline __int64 php_date_llabs( __int64 i ) { return i >= 0? i: -i; } in php_date_llabs() function 39 static __inline __int64_t php_date_llabs( __int64_t i ) { return i >= 0 ? i : -i; } in php_date_llabs() function 41 static inline long long php_date_llabs( long long i ) { return i >= 0 ? i : -i; } in php_date_llabs() function 747 … = slprintf(buffer, sizeof(buffer), "%s%04lld", t->y < 0 ? "-" : "", php_date_llabs((timelib_sll) … in date_format() 748 …of(buffer), "%s%04lld", t->y < 0 ? "-" : (t->y >= 10000 ? "+" : ""), php_date_llabs((timelib_sll) … in date_format() 749 …= slprintf(buffer, sizeof(buffer), "%s%04lld", t->y < 0 ? "-" : "+", php_date_llabs((timelib_sll) … in date_format()
|
Completed in 17 milliseconds