| 136 | } |
| 137 | |
| 138 | static bool encodeBytesGroupZero(const unsigned char* buffer) |
| 139 | { |
| 140 | for (size_t i = 0; i < kByteGroupSize; ++i) |
| 141 | if (buffer[i]) |
| 142 | return false; |
| 143 | |
| 144 | return true; |
| 145 | } |
| 146 | |
| 147 | static size_t encodeBytesGroupMeasure(const unsigned char* buffer, int bits) |
| 148 | { |
no outgoing calls
no test coverage detected