Searched defs:php_date_llabs (Results 1 – 1 of 1) sorted by relevance
35 static __inline __int64 php_date_llabs( __int64 i ) { return i >= 0? i: -i; } in php_date_llabs() function37 static __inline __int64_t php_date_llabs( __int64_t i ) { return i >= 0 ? i : -i; } in php_date_llabs() function39 static inline long long php_date_llabs( long long i ) { return i >= 0 ? i : -i; } in php_date_llabs() function
Completed in 19 milliseconds