Memory size of objects are rounded to multiple of 8 bytes @param i @return i rounded to a equal of higher multiple of 8
(long i)
| 126 | * @return i rounded to a equal of higher multiple of 8 |
| 127 | */ |
| 128 | public static long roundToEight(long i) { |
| 129 | return 8 * ((i + 7) / 8); // integer division rounds the result down |
| 130 | } |
| 131 | |
| 132 | } |
no outgoing calls
no test coverage detected