Lines Matching refs:nRead
7355 ** Read nRead bytes of data from offset iOff of file pFile into buffer
7367 int nRead, /* Number of bytes to read */
7373 n = fread(aRead, 1, nRead, pFile);
7374 if( (int)n!=nRead ){
7986 int nRead; /* Bytes to read from file */
7998 nRead = (int)(MIN(szFile, ZIPFILE_BUFFER_SIZE));
7999 iOff = szFile - nRead;
8000 rc = zipfileReadData(pFile, aRead, nRead, iOff, &pTab->base.zErrMsg);
8002 nRead = (int)(MIN(nBlob, ZIPFILE_BUFFER_SIZE));
8003 aRead = (u8*)&aBlob[nBlob-nRead];
8010 for(i=nRead-20; i>=0; i--){
19105 size_t nRead;
19113 nRead = fread(pBuf, nIn, 1, in);
19115 if( nRead!=1 ){