| 270 | void appendUInt32(unsigned value) { BVASSERT(bitind()==0); setUInt32(grow(4),value); } |
| 271 | ByteType getByte(size_t ind) const { BVASSERT(ind < size()); return mStart[ind]; } |
| 272 | ByteType getNibble(size_t ind,int hi) const { |
| 273 | ByteType val = getByte(ind); return hi ? (val>>4) : val & 0xf; |
| 274 | } |
| 275 | |
| 276 | unsigned getUInt16(size_t readIndex) const; // 2 byte value |
| 277 | unsigned getUInt32(size_t readIndex) const; // 4 byte value |
no outgoing calls
no test coverage detected