Home
last modified time | relevance | path

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

/php-src/ext/date/
H A Dphp_date.c37 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
743 … = slprintf(buffer, sizeof(buffer), "%s%04lld", t->y < 0 ? "-" : "", php_date_llabs((timelib_sll) … in date_format()
744 …of(buffer), "%s%04lld", t->y < 0 ? "-" : (t->y >= 10000 ? "+" : ""), php_date_llabs((timelib_sll) … in date_format()
745 …= slprintf(buffer, sizeof(buffer), "%s%04lld", t->y < 0 ? "-" : "+", php_date_llabs((timelib_sll) … in date_format()

Completed in 25 milliseconds