* Arithmetic help functions * */ Multiply \a x and \y
| 45 | */ |
| 46 | /// Multiply \a x and \y |
| 47 | forceinline long long int |
| 48 | mll(long long int x, long long int y) { |
| 49 | return x*y; |
| 50 | } |
| 51 | /// Cast \a x into a long long int |
| 52 | forceinline long long int |
| 53 | ll(int x) { |
no outgoing calls
no test coverage detected