Home
last modified time | relevance | path

Searched refs:remainingBytes (Results 101 – 125 of 264) sorted by relevance

1234567891011

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/html5lib-python/html5lib/
H A Dinputstream.py106 remainingBytes = bytes
110 while bufferIndex < len(self.buffer) and remainingBytes != 0:
111 assert remainingBytes > 0
114 if remainingBytes <= len(bufferedData) - bufferOffset:
115 bytesToRead = remainingBytes
122 remainingBytes -= bytesToRead
126 if remainingBytes:
127 rv.append(self._readStream(remainingBytes))
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/pipenv/pipenv/vendor/pip9/_vendor/html5lib/
H A D_inputstream.py105 remainingBytes = bytes
109 while bufferIndex < len(self.buffer) and remainingBytes != 0:
110 assert remainingBytes > 0
113 if remainingBytes <= len(bufferedData) - bufferOffset:
114 bytesToRead = remainingBytes
121 remainingBytes -= bytesToRead
125 if remainingBytes:
126 rv.append(self._readStream(remainingBytes))
/dports/lang/spidermonkey78/firefox-78.9.0/obj-x86_64-pc-linux-gnu/_virtualenvs/init/lib/python2.7/site-packages/pip/_vendor/html5lib/
H A D_inputstream.py99 remainingBytes = bytes
103 while bufferIndex < len(self.buffer) and remainingBytes != 0:
104 assert remainingBytes > 0
107 if remainingBytes <= len(bufferedData) - bufferOffset:
108 bytesToRead = remainingBytes
115 remainingBytes -= bytesToRead
119 if remainingBytes:
120 rv.append(self._readStream(remainingBytes))
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/pipenv/pipenv/patched/notpip/_vendor/html5lib/
H A D_inputstream.py105 remainingBytes = bytes
109 while bufferIndex < len(self.buffer) and remainingBytes != 0:
110 assert remainingBytes > 0
113 if remainingBytes <= len(bufferedData) - bufferOffset:
114 bytesToRead = remainingBytes
121 remainingBytes -= bytesToRead
125 if remainingBytes:
126 rv.append(self._readStream(remainingBytes))
/dports/lang/spidermonkey78/firefox-78.9.0/testing/web-platform/tests/tools/third_party/html5lib/html5lib/
H A D_inputstream.py105 remainingBytes = bytes
109 while bufferIndex < len(self.buffer) and remainingBytes != 0:
110 assert remainingBytes > 0
113 if remainingBytes <= len(bufferedData) - bufferOffset:
114 bytesToRead = remainingBytes
121 remainingBytes -= bytesToRead
125 if remainingBytes:
126 rv.append(self._readStream(remainingBytes))
/dports/devel/py-pipenv/pipenv-2021.5.29/pipenv/patched/notpip/_vendor/html5lib/
H A D_inputstream.py105 remainingBytes = bytes
109 while bufferIndex < len(self.buffer) and remainingBytes != 0:
110 assert remainingBytes > 0
113 if remainingBytes <= len(bufferedData) - bufferOffset:
114 bytesToRead = remainingBytes
121 remainingBytes -= bytesToRead
125 if remainingBytes:
126 rv.append(self._readStream(remainingBytes))
/dports/devel/py-pip/pip-20.3.4/src/pip/_vendor/html5lib/
H A D_inputstream.py99 remainingBytes = bytes
103 while bufferIndex < len(self.buffer) and remainingBytes != 0:
104 assert remainingBytes > 0
107 if remainingBytes <= len(bufferedData) - bufferOffset:
108 bytesToRead = remainingBytes
115 remainingBytes -= bytesToRead
119 if remainingBytes:
120 rv.append(self._readStream(remainingBytes))
/dports/audio/mixxx/mixxx-2.3.0/src/sources/
H A Dsoundsourcemp3.cpp617 const SINT remainingBytes = m_madStream.bufend - m_madStream.next_frame; in readSampleFramesClamped() local
618 DEBUG_ASSERT(remainingBytes <= kMaxBytesPerMp3Frame); // only last MP3 frame in readSampleFramesClamped()
619 const SINT leftoverBytes = remainingBytes + MAD_BUFFER_GUARD; in readSampleFramesClamped()
620 … if ((remainingBytes > 0) && (leftoverBytes <= SINT(m_leftoverBuffer.size()))) { in readSampleFramesClamped()
623 … std::copy(m_madStream.next_frame, m_madStream.next_frame + remainingBytes, pLeftoverBuffer); in readSampleFramesClamped()
625 … std::fill(pLeftoverBuffer + remainingBytes, pLeftoverBuffer + leftoverBytes, 0); in readSampleFramesClamped()
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/include/seqan/seq_io/
H A Dbam_sam.h110 int32_t & remainingBytes, in readBamRecord() argument
124 remainingBytes -= sizeof(BamAlignmentRecordCore) + recordCore._l_qname + in readBamRecord()
126 SEQAN_ASSERT_GEQ(remainingBytes, 0); in readBamRecord()
258 int32_t remainingBytes = _readBamRecordWithoutSize(file.context.bamIOContext.buffer, file.iter); in _readRecord() local
262 if (int32_t l_qseq = readBamRecord(meta, seq, pId, remainingBytes, it)) in _readRecord()
282 it += remainingBytes; in _readRecord()
/dports/biology/seqan/seqan-library-2.4.0/include/seqan/seq_io/
H A Dbam_sam.h110 int32_t & remainingBytes, in readBamRecord() argument
124 remainingBytes -= sizeof(BamAlignmentRecordCore) + recordCore._l_qname + in readBamRecord()
126 SEQAN_ASSERT_GEQ(remainingBytes, 0); in readBamRecord()
258 int32_t remainingBytes = _readBamRecordWithoutSize(file.context.bamIOContext.buffer, file.iter); in _readRecord() local
262 if (int32_t l_qseq = readBamRecord(meta, seq, pId, remainingBytes, it)) in _readRecord()
282 it += remainingBytes; in _readRecord()
/dports/devel/bullet/bullet3-3.21/examples/SharedMemory/
H A DRemoteGUIHelper.cpp381 int remainingBytes = sizeInBytes; in uploadData() local
383 while (remainingBytes) in uploadData()
385 btAssert(remainingBytes >= 0); in uploadData()
386 int curBytes = btMin(remainingBytes, chunkSize); in uploadData()
407 remainingBytes -= curBytes; in uploadData()
/dports/devel/py-bullet3/bullet3-3.21/examples/SharedMemory/
H A DRemoteGUIHelper.cpp381 int remainingBytes = sizeInBytes; in uploadData() local
383 while (remainingBytes) in uploadData()
385 btAssert(remainingBytes >= 0); in uploadData()
386 int curBytes = btMin(remainingBytes, chunkSize); in uploadData()
407 remainingBytes -= curBytes; in uploadData()
/dports/games/doomsday/doomsday-2.3.1/doomsday/sdk/libshell/src/
H A Dpackagedownloader.cpp108 void downloadProgress(IDownloadable &dl, dsize remainingBytes) override in DENG2_PIMPL()
115 found.value().start = dint64(remainingBytes); in DENG2_PIMPL()
117 if (remainingBytes == 0) in DENG2_PIMPL()
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/codec/
H A DSkBmpRLECodec.cpp141 const size_t remainingBytes = fBytesBuffered - fCurrRLEByte; in checkForMoreData() local
148 memmove(buffer, SkTAddOffset<uint8_t>(buffer, fCurrRLEByte), remainingBytes); in checkForMoreData()
151 buffer += remainingBytes; in checkForMoreData()
161 fBytesBuffered = remainingBytes + additionalBytes; in checkForMoreData()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/codec/
H A DSkBmpRLECodec.cpp141 const size_t remainingBytes = fBytesBuffered - fCurrRLEByte; in checkForMoreData() local
148 memmove(buffer, SkTAddOffset<uint8_t>(buffer, fCurrRLEByte), remainingBytes); in checkForMoreData()
151 buffer += remainingBytes; in checkForMoreData()
161 fBytesBuffered = remainingBytes + additionalBytes; in checkForMoreData()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/src/codec/
H A DSkBmpRLECodec.cpp141 const size_t remainingBytes = fBytesBuffered - fCurrRLEByte; in checkForMoreData() local
148 memmove(buffer, SkTAddOffset<uint8_t>(buffer, fCurrRLEByte), remainingBytes); in checkForMoreData()
151 buffer += remainingBytes; in checkForMoreData()
161 fBytesBuffered = remainingBytes + additionalBytes; in checkForMoreData()
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/codec/
H A DSkBmpRLECodec.cpp141 const size_t remainingBytes = fBytesBuffered - fCurrRLEByte; in checkForMoreData() local
148 memmove(buffer, SkTAddOffset<uint8_t>(buffer, fCurrRLEByte), remainingBytes); in checkForMoreData()
151 buffer += remainingBytes; in checkForMoreData()
161 fBytesBuffered = remainingBytes + additionalBytes; in checkForMoreData()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/codec/
H A DSkBmpRLECodec.cpp141 const size_t remainingBytes = fBytesBuffered - fCurrRLEByte; in checkForMoreData() local
148 memmove(buffer, SkTAddOffset<uint8_t>(buffer, fCurrRLEByte), remainingBytes); in checkForMoreData()
151 buffer += remainingBytes; in checkForMoreData()
161 fBytesBuffered = remainingBytes + additionalBytes; in checkForMoreData()
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/codec/
H A DSkBmpRLECodec.cpp141 const size_t remainingBytes = fBytesBuffered - fCurrRLEByte; in checkForMoreData() local
148 memmove(buffer, SkTAddOffset<uint8_t>(buffer, fCurrRLEByte), remainingBytes); in checkForMoreData()
151 buffer += remainingBytes; in checkForMoreData()
161 fBytesBuffered = remainingBytes + additionalBytes; in checkForMoreData()
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/codec/
H A DSkBmpRLECodec.cpp172 const size_t remainingBytes = fRLEBytes - fCurrRLEByte; in checkForMoreData() local
179 memmove(buffer, SkTAddOffset<uint8_t>(buffer, fCurrRLEByte), remainingBytes); in checkForMoreData()
182 buffer += remainingBytes; in checkForMoreData()
195 fRLEBytes = remainingBytes + additionalBytes; in checkForMoreData()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/codec/
H A DSkBmpRLECodec.cpp144 const size_t remainingBytes = fBytesBuffered - fCurrRLEByte; in checkForMoreData() local
151 memmove(buffer, SkTAddOffset<uint8_t>(buffer, fCurrRLEByte), remainingBytes); in checkForMoreData()
154 buffer += remainingBytes; in checkForMoreData()
164 fBytesBuffered = remainingBytes + additionalBytes; in checkForMoreData()
/dports/finance/hs-hledger-ui/hledger-ui-1.19/_cabal_deps/vty-5.33/test/Verify/Data/Terminfo/
H A DParse.hs78 remainingBytes = f (map (toEnum . fromEnum) s) replBytes function
86 return (s', remainingBytes)
/dports/devel/hs-git-brunch/git-brunch-1.5.1.0/_cabal_deps/vty-5.33/test/Verify/Data/Terminfo/
H A DParse.hs78 remainingBytes = f (map (toEnum . fromEnum) s) replBytes function
86 return (s', remainingBytes)
/dports/net-im/matterhorn/matterhorn-50200.13.0/_cabal_deps/vty-5.32/test/Verify/Data/Terminfo/
H A DParse.hs78 remainingBytes = f (map (toEnum . fromEnum) s) replBytes function
86 return (s', remainingBytes)
/dports/misc/hs-hascard/hascard-0.3.0.1/_cabal_deps/vty-5.30/test/Verify/Data/Terminfo/
H A DParse.hs78 remainingBytes = f (map (toEnum . fromEnum) s) replBytes function
86 return (s', remainingBytes)

1234567891011