| 78 | } // namespace base64 |
| 79 | |
| 80 | int nextPOT(int x) |
| 81 | { |
| 82 | --x; |
| 83 | x |= (x >> 1); |
| 84 | x |= (x >> 2); |
| 85 | x |= (x >> 4); |
| 86 | x |= (x >> 8); |
| 87 | x |= (x >> 16); |
| 88 | return ++x; |
| 89 | } |
| 90 | |
| 91 | /* |
| 92 | * Capture screen interface |
no outgoing calls
no test coverage detected