Searched refs:nRead (Results 1 - 9 of 9) sorted by relevance

/netbsd-current/external/gpl3/gdb.old/dist/zlib/contrib/minizip/
H A Dmztools.c259 int nRead; local
261 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) {
262 if ((int)fwrite(buffer, 1, nRead, fpOut) != nRead) {
/netbsd-current/external/gpl3/binutils/dist/zlib/contrib/minizip/
H A Dmztools.c259 int nRead; local
261 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) {
262 if ((int)fwrite(buffer, 1, nRead, fpOut) != nRead) {
/netbsd-current/external/gpl3/gdb/dist/zlib/contrib/minizip/
H A Dmztools.c259 int nRead; local
261 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) {
262 if ((int)fwrite(buffer, 1, nRead, fpOut) != nRead) {
/netbsd-current/external/gpl3/binutils.old/dist/zlib/contrib/minizip/
H A Dmztools.c259 int nRead; local
261 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) {
262 if ((int)fwrite(buffer, 1, nRead, fpOut) != nRead) {
/netbsd-current/common/dist/zlib/contrib/minizip/
H A Dmztools.c259 int nRead; local
261 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) {
262 if ((int)fwrite(buffer, 1, nRead, fpOut) != nRead) {
/netbsd-current/usr.bin/make/
H A Djob.c1819 ssize_t nRead; /* (Temporary) number of bytes read */ local
1826 nRead = read(job->inPipe, &job->outBuf[job->curPos],
1828 if (nRead < 0) {
1835 nr = (size_t)nRead;
/netbsd-current/external/public-domain/sqlite/dist/tea/generic/
H A Dtclsqlite3.c296 int nRead = bufSize; /* Number of bytes to read */ local
301 if( (p->iSeek+nRead)>nBlob ){
302 nRead = nBlob-p->iSeek;
304 if( nRead<=0 ){
308 rc = sqlite3_blob_read(p->pBlob, (void *)buf, nRead, p->iSeek);
314 p->iSeek += nRead;
315 return nRead;
/netbsd-current/external/public-domain/sqlite/dist/
H A Dsqlite3.c49030 DWORD nRead; /* Number of bytes actually read from file */ local
57442 int nRead; /* Database pages read */ member in struct:Pager
87521 int nRead = 0; local
102768 int nRead; /* Bytes to read from disk */ local
102920 int nRead = pgsz - iBuf; local
105573 int nRead = iAmt; local
196112 int nRead; /* Number of bytes to read */ local
226566 int nRead = 0; local
238964 int nRead; /* Total number of blocks read */ member in struct:Fts5Index
[all...]
H A Dshell.c9812 ** 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 */ local
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];
9821 zipfileReadData( FILE *pFile, u8 *aRead, int nRead, i64 iOff, char **pzErrmsg ) argument
21899 size_t nRead; local
[all...]

Completed in 884 milliseconds