Lines Matching defs:nRead
9812 ** Read nRead bytes of data from offset iOff of file pFile into buffer
9824 int nRead, /* Number of bytes to read */
9830 n = fread(aRead, 1, nRead, pFile);
9831 if( (int)n!=nRead ){
10447 int nRead; /* Bytes to read from file */
10459 nRead = (int)(MIN(szFile, ZIPFILE_BUFFER_SIZE));
10460 iOff = szFile - nRead;
10461 rc = zipfileReadData(pFile, aRead, nRead, iOff, &pTab->base.zErrMsg);
10463 nRead = (int)(MIN(nBlob, ZIPFILE_BUFFER_SIZE));
10464 aRead = (u8*)&aBlob[nBlob-nRead];
10471 for(i=nRead-20; i>=0; i--){
21899 size_t nRead;
21917 nRead = fread(pBuf, nIn, 1, in);
21919 if( nRead!=1 ){