Home
last modified time | relevance | path

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

/PHP-5.3/ext/date/
H A Dphp_date.c35 static __inline __int64 php_date_llabs( __int64 i ) { return i >= 0? i: -i; } in php_date_llabs() function
37 static __inline __int64_t php_date_llabs( __int64_t i ) { return i >= 0 ? i : -i; } in php_date_llabs() function
39 static inline long long php_date_llabs( long long i ) { return i >= 0 ? i : -i; } in php_date_llabs() function
1097 …case 'Y': length = slprintf(buffer, 32, "%s%04lld", t->y < 0 ? "-" : "", php_date_llabs((timelib_s… in date_format()

Completed in 21 milliseconds