(self, a, size)
| 3193 | return |
| 3194 | |
| 3195 | def align_down(self, a, size): |
| 3196 | alignment_correction = a % size |
| 3197 | return a - alignment_correction |
| 3198 | |
| 3199 | def align_up(self, a, size): |
| 3200 | alignment_correction = (size - 1) - ((a + size - 1) % size) |
no outgoing calls
no test coverage detected