| 14 | namespace ZXing { |
| 15 | |
| 16 | int |
| 17 | BitSource::available() const |
| 18 | { |
| 19 | return 8 * (Size(_bytes) - _byteOffset) - _bitOffset; |
| 20 | } |
| 21 | |
| 22 | static int ReadBitsImpl(int numBits, const ByteArray& _bytes, int available, int& _byteOffset, int& _bitOffset) |
| 23 | { |
no test coverage detected