Home
last modified time | relevance | path

Searched refs:php_date_llabs (Results 1 – 1 of 1) sorted by relevance

/PHP-7.4/ext/date/
H A Dphp_date.c38 static __inline __int64 php_date_llabs( __int64 i ) { return i >= 0? i: -i; } in php_date_llabs() function
40 static __inline __int64_t php_date_llabs( __int64_t i ) { return i >= 0 ? i : -i; } in php_date_llabs() function
42 static inline long long php_date_llabs( long long i ) { return i >= 0 ? i : -i; } in php_date_llabs() function
1186 … = slprintf(buffer, sizeof(buffer), "%s%04lld", t->y < 0 ? "-" : "", php_date_llabs((timelib_sll) … in date_format()

Completed in 41 milliseconds