/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/ |
H A D | Input.cpp | 54 size_t nRead = 0; 93 ++nRead; 99 while ((nRead < maxRead) && (mReadLoc.sIndex < mCount)) 111 maxRead = nRead + size; // Stop reading right before the backslash. 114 std::memcpy(buf + nRead, mString[mReadLoc.sIndex] + mReadLoc.cIndex, size); 115 nRead += size; 125 return nRead;
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/ |
H A D | Input.cpp | 62 size_t nRead = 0; 101 ++nRead; 107 while ((nRead < maxRead) && (mReadLoc.sIndex < mCount)) 119 maxRead = nRead + size; // Stop reading right before the backslash. 122 std::memcpy(buf + nRead, mString[mReadLoc.sIndex] + mReadLoc.cIndex, size); 123 nRead += size; 133 return nRead;
|
/third_party/node/test/parallel/ |
H A D | test-fs-read.js | 61 const nRead = fs.readSync(fd, Buffer.alloc(1), 0, 1, pos); 62 assert.strictEqual(nRead, 0); 64 fs.read(fd, Buffer.alloc(1), 0, 1, pos, common.mustSucceed((nRead) => { 65 assert.strictEqual(nRead, 0);
|
/third_party/node/deps/v8/third_party/zlib/contrib/minizip/ |
H A D | mztools.c | 259 int nRead; local 261 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) { 262 if ((int)fwrite(buffer, 1, nRead, fpOut) != nRead) {
|
/third_party/skia/third_party/externals/zlib/contrib/minizip/ |
H A D | mztools.c | 259 int nRead; local 261 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) { 262 if ((int)fwrite(buffer, 1, nRead, fpOut) != nRead) {
|
/third_party/zlib/contrib/minizip/ |
H A D | mztools.c | 258 int nRead; in unzRepair() local 260 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) { in unzRepair() 261 if ((int)fwrite(buffer, 1, nRead, fpOut) != nRead) { in unzRepair()
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | 47803 DWORD nRead; /* Number of bytes actually read from file */ global() local 56188 int nRead; /* Database pages read */ global() member 85563 int nRead = 0; global() local 100283 int nRead; /* Bytes to read from disk */ global() local 100435 int nRead = pgsz - iBuf; global() local 103066 int nRead = iAmt; global() local 191146 int nRead; /* Number of bytes to read */ global() local 218604 int nRead = 0; global() local 230306 int nRead; /* Total number of blocks read */ global() member [all...] |
H A D | shell.c | 7355 ** Read nRead bytes of data from offset iOff of file pFile into buffer 7367 int nRead, /* Number of bytes to read */ in zipfileReadData() 7373 n = fread(aRead, 1, nRead, pFile); in zipfileReadData() 7374 if( (int)n!=nRead ){ in zipfileReadData() 7986 int nRead; /* Bytes to read from file */ in zipfileReadEOCD() local 7998 nRead = (int)(MIN(szFile, ZIPFILE_BUFFER_SIZE)); in zipfileReadEOCD() 7999 iOff = szFile - nRead; in zipfileReadEOCD() 8000 rc = zipfileReadData(pFile, aRead, nRead, iOff, &pTab->base.zErrMsg); in zipfileReadEOCD() 8002 nRead = (int)(MIN(nBlob, ZIPFILE_BUFFER_SIZE)); in zipfileReadEOCD() 8003 aRead = (u8*)&aBlob[nBlob-nRead]; in zipfileReadEOCD() 7364 zipfileReadData( FILE *pFile, u8 *aRead, int nRead, i64 iOff, char **pzErrmsg ) zipfileReadData() argument 19105 size_t nRead; readFile() local [all...] |