Lines Matching refs:NumBytes
179 unsigned &NumFields, unsigned &NumBytes) { in ReadPrefix() argument
196 NumBytes = static_cast<unsigned>(BufPtr[2]) | in ReadPrefix()
204 unsigned NumFields, unsigned NumBytes) { in ReadFields() argument
205 HeaderSize = NumBytes + (2 * WordSize); in ReadFields()
222 unsigned NumBytes; in Read() local
223 if (ReadPrefix(BufPtr, BufEnd, NumFields, NumBytes)) in Read()
227 if (ReadFields(BufPtr, BufEnd, NumFields, NumBytes)) in Read()
229 BufPtr += NumBytes; in Read()
236 unsigned NumBytes; in Read() local
243 if (ReadPrefix(Buffer, Buffer + sizeof(Buffer), NumFields, NumBytes)) in Read()
247 uint8_t *Header = new uint8_t[NumBytes]; in Read()
249 Bytes->readBytes(Header, NumBytes, 2 * WordSize) != NumBytes || in Read()
250 ReadFields(Header, Header + NumBytes, NumFields, NumBytes); in Read()