Searched refs:numBytes (Results 1 – 4 of 4) sorted by relevance
1196 int numBytes = 0; in decodeFromFile() local1212 while( ( numBytes = bis.read( buffer, length, 4096 ) ) >= 0 ) in decodeFromFile()1213 length += numBytes; in decodeFromFile()1253 int numBytes = 0; in encodeFromFile() local1261 while( ( numBytes = bis.read( buffer, length, 4096 ) ) >= 0 ) in encodeFromFile()1262 length += numBytes; in encodeFromFile()
44 const uint8_t * WPXSvInputStream::read(size_t numBytes, size_t &numBytesRead) in read() argument48 if (numBytes == 0 || atEOS()) in read()51 numBytesRead = mxStream->readSomeBytes (maData, numBytes); in read()
31 virtual const uint8_t *read(size_t numBytes, size_t &numBytesRead);
172 size_t numBytes = 4; in detect() local175 numBytesRead = mxInputStream->readSomeBytes (aData, numBytes); in detect()177 if ((numBytesRead != numBytes) || (aData[0] != '@') || in detect()
Completed in 49 milliseconds