/external/swiftshader/src/OpenGL/compiler/preprocessor/ |
D | Input.cpp | 62 size_t nRead = 0; in read() local 101 ++nRead; in read() 107 while ((nRead < maxRead) && (mReadLoc.sIndex < mCount)) in read() 119 maxRead = nRead + size; // Stop reading right before the backslash. in read() 122 std::memcpy(buf + nRead, mString[mReadLoc.sIndex] + mReadLoc.cIndex, size); in read() 123 nRead += size; in read() 133 return nRead; in read()
|
/external/pdfium/core/fxcrt/ |
D | cfx_memorystream.cpp | 82 size_t nRead = std::min(size, m_nGrowSize - static_cast<size_t>(offset)); in ReadBlock() local 83 memcpy(buffer, m_Blocks[nStartBlock] + offset, nRead); in ReadBlock() 84 buffer = static_cast<uint8_t*>(buffer) + nRead; in ReadBlock() 85 size -= nRead; in ReadBlock() 96 size_t nRead = std::min(size, m_nCurSize - m_nCurPos); in ReadBlock() local 97 if (!ReadBlock(buffer, static_cast<int32_t>(m_nCurPos), nRead)) in ReadBlock() 100 return nRead; in ReadBlock()
|
/external/zlib/src/contrib/minizip/ |
D | mztools.c | 259 int nRead; variable 261 while ( (nRead = (int)fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) { 262 if ((int)fwrite(buffer, 1, nRead, fpOut) != nRead) {
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/ |
D | GifResourceDecoder.java | 103 int nRead; in inputStreamToBytes() local 105 while ((nRead = is.read(data)) != -1) { in inputStreamToBytes() 106 buffer.write(data, 0, nRead); in inputStreamToBytes()
|
/external/expat/xmlwf/ |
D | xmlwin32url.cxx | 221 DWORD nRead; in OnDataAvailable() local 222 HRESULT hr = pstgmed->pstm->Read(buf, nToRead, &nRead); in OnDataAvailable() 224 totalRead_ += nRead; in OnDataAvailable() 226 nRead, in OnDataAvailable()
|
/external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/ |
D | GifDecoder.java | 320 int nRead; in read() local 322 while ((nRead = is.read(data, 0, data.length)) != -1) { in read() 323 buffer.write(data, 0, nRead); in read()
|
/external/u-boot/fs/yaffs2/ |
D | yaffsfs.c | 1073 int nRead = 0; in yaffsfs_do_read() local 1138 nRead = 0; in yaffsfs_do_read() 1140 nRead = yaffs_file_rd(obj, buf, pos, nToRead); in yaffsfs_do_read() 1142 if (nRead > 0) { in yaffsfs_do_read() 1143 totalRead += nRead; in yaffsfs_do_read() 1144 pos += nRead; in yaffsfs_do_read() 1145 buf += nRead; in yaffsfs_do_read() 1148 if (nRead == nToRead) in yaffsfs_do_read() 1149 nbyte -= nRead; in yaffsfs_do_read()
|
/external/swiftshader/third_party/LLVM/lib/Support/Windows/ |
D | Path.inc | 785 DWORD nRead = 0; 786 BOOL ret = ReadFile(h, buf, len, &nRead, NULL); 789 if (!ret || nRead != len)
|
/external/sqlite/dist/orig/ |
D | shell.c | 4377 int nRead, /* Number of bytes to read */ in zipfileReadData() argument 4383 n = fread(aRead, 1, nRead, pFile); in zipfileReadData() 4384 if( (int)n!=nRead ){ in zipfileReadData() 4504 int nRead; in zipfileCsrReadCDS() local 4506 nRead = pCsr->cds.nFile + pCsr->cds.nExtra; in zipfileCsrReadCDS() 4509 rc = zipfileReadData(pCsr->pFile, aRead, nRead, pCsr->iNextOff, pzErr); in zipfileCsrReadCDS() 4868 int nRead; /* Bytes to read from file */ in zipfileReadEOCD() local 4878 nRead = (int)(MIN(szFile, ZIPFILE_BUFFER_SIZE)); in zipfileReadEOCD() 4879 iOff = szFile - nRead; in zipfileReadEOCD() 4881 rc = zipfileReadData(pFile, aRead, nRead, iOff, &pTab->base.zErrMsg); in zipfileReadEOCD() [all …]
|
D | sqlite3.c | 41390 DWORD nRead; /* Number of bytes actually read from file */ 41426 while( !osReadFile(pFile->h, pBuf, amt, &nRead, 0) ){ 41431 while( !osReadFile(pFile->h, pBuf, amt, &nRead, &overlapped) && 41443 if( nRead<(DWORD)amt ){ 41445 memset(&((char*)pBuf)[nRead], 0, amt-nRead); 48670 int nRead; /* Database pages read */ 51029 PAGER_INCR(pPager->nRead); 54686 a[9] = pPager->nRead; 75463 int nRead = 0; 75469 if( p->bIsReader ) nRead++; [all …]
|
/external/sqlite/dist/ |
D | shell.c | 4383 int nRead, /* Number of bytes to read */ in zipfileReadData() argument 4389 n = fread(aRead, 1, nRead, pFile); in zipfileReadData() 4390 if( (int)n!=nRead ){ in zipfileReadData() 4510 int nRead; in zipfileCsrReadCDS() local 4512 nRead = pCsr->cds.nFile + pCsr->cds.nExtra; in zipfileCsrReadCDS() 4515 rc = zipfileReadData(pCsr->pFile, aRead, nRead, pCsr->iNextOff, pzErr); in zipfileCsrReadCDS() 4874 int nRead; /* Bytes to read from file */ in zipfileReadEOCD() local 4884 nRead = (int)(MIN(szFile, ZIPFILE_BUFFER_SIZE)); in zipfileReadEOCD() 4885 iOff = szFile - nRead; in zipfileReadEOCD() 4887 rc = zipfileReadData(pFile, aRead, nRead, iOff, &pTab->base.zErrMsg); in zipfileReadEOCD() [all …]
|
D | sqlite3.c | 41406 DWORD nRead; /* Number of bytes actually read from file */ 41442 while( !osReadFile(pFile->h, pBuf, amt, &nRead, 0) ){ 41447 while( !osReadFile(pFile->h, pBuf, amt, &nRead, &overlapped) && 41459 if( nRead<(DWORD)amt ){ 41461 memset(&((char*)pBuf)[nRead], 0, amt-nRead); 48686 int nRead; /* Database pages read */ 51045 PAGER_INCR(pPager->nRead); 54702 a[9] = pPager->nRead; 75479 int nRead = 0; 75485 if( p->bIsReader ) nRead++; [all …]
|
/external/owasp/sanitizer/lib/htmlparser-1.3/ |
D | htmlparser-1.3-with-transitions.jar | META-INF/MANIFEST.MF
nu/validator/htmlparser/tools/XSLT4HTML5XOM.class
XSLT4HTML5XOM ... |
D | htmlparser-1.3.jar | META-INF/MANIFEST.MF
nu/validator/htmlparser/tools/XSLT4HTML5XOM.class
XSLT4HTML5XOM ... |
/external/guice/extensions/struts2/lib/ |
D | ant-1.6.5.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
D | ant.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/jarjar/lib/ |
D | apache-ant-1.9.4.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/cldr/tools/java/libs/ |
D | guava.jar | META-INF/MANIFEST.MF
META-INF/
META-INF/maven/
META- ... |
/external/error_prone/error_prone/ |
D | error_prone_core-2.3.2-with-dependencies.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/services/
META- ... |
/external/icu/tools/srcgen/currysrc/libs/ |
D | org.eclipse.jdt.core_3.14.0.v20180528-0519.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSE_.SF
META-INF/ECLIPSE_ ... |