Home
last modified time | relevance | path

Searched refs:remainingBytes (Results 51 – 75 of 264) sorted by relevance

1234567891011

/dports/net-im/matterhorn/matterhorn-50200.13.0/_cabal_deps/vty-5.32/src/Graphics/Vty/UnicodeWidthTable/
H A DIO.hs36 Right (remainingBytes, _, _) | not (BSL.null remainingBytes) ->
37 Left $ "Error: " <> show (BSL.length remainingBytes) <>
/dports/misc/hs-hascard/hascard-0.3.0.1/_cabal_deps/vty-5.30/src/Graphics/Vty/UnicodeWidthTable/
H A DIO.hs36 Right (remainingBytes, _, _) | not (BSL.null remainingBytes) ->
37 Left $ "Error: " <> show (BSL.length remainingBytes) <>
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/loader/
H A DProgressTracker.cpp192 long long remainingBytes, estimatedBytesForPendingRequests; in incrementProgress() local
202remainingBytes = ((m_totalPageAndResourceBytesToLoad + estimatedBytesForPendingRequests) - m_total… in incrementProgress()
203 if (remainingBytes > 0) // Prevent divide by 0. in incrementProgress()
204 percentOfRemainingBytes = (double)bytesReceived / (double)remainingBytes; in incrementProgress()
/dports/games/ultimatestunts/ultimatestunts-srcdata-0771/ultimatestunts/
H A Dsndsample.cpp82 int remainingBytes = (int)bufSize; in loadVorbisChunk() local
83 while(remainingBytes > 0) in loadVorbisChunk()
88 remainingBytes, //size of output buffer in loadVorbisChunk()
106 remainingBytes -= ret; in loadVorbisChunk()
/dports/biology/seqan/seqan-library-2.4.0/include/seqan/bam_io/
H A Dread_bam.h205 int32_t remainingBytes = _readBamRecordWithoutSize(context.buffer, iter);
213 remainingBytes -= sizeof(BamAlignmentRecordCore) + record._l_qname +
215 SEQAN_ASSERT_GEQ(remainingBytes, 0);
274 resize(record.tags, remainingBytes, Exact());
275 arrayCopyForward(it, it + remainingBytes, begin(record.tags, Standard()));
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/include/seqan/bam_io/
H A Dread_bam.h205 int32_t remainingBytes = _readBamRecordWithoutSize(context.buffer, iter);
213 remainingBytes -= sizeof(BamAlignmentRecordCore) + record._l_qname +
215 SEQAN_ASSERT_GEQ(remainingBytes, 0);
274 resize(record.tags, remainingBytes, Exact());
275 arrayCopyForward(it, it + remainingBytes, begin(record.tags, Standard()));
/dports/biology/pbseqan/seqan-21d95d737d8decb5cc3693b9065d81e831e7f57d/include/seqan/bam_io/
H A Dread_bam.h205 __int32 remainingBytes = _readBamRecordWithoutSize(context.buffer, iter);
212 remainingBytes -= sizeof(BamAlignmentRecordCore) + record._l_qname +
214 SEQAN_ASSERT_GEQ(remainingBytes, 0);
273 resize(record.tags, remainingBytes, Exact());
274 arrayCopyForward(it, it + remainingBytes, begin(record.tags, Standard()));
/dports/www/firefox-esr/firefox-91.8.0/mobile/android/geckoview/src/thirdparty/java/org/mozilla/thirdparty/com/google/android/exoplayer2/upstream/
H A DDataSchemeDataSource.java85 int remainingBytes = endPosition - readPosition; in read() local
86 if (remainingBytes == 0) { in read()
89 readLength = Math.min(readLength, remainingBytes); in read()
/dports/www/firefox/firefox-99.0/mobile/android/exoplayer2/src/main/java/org/mozilla/thirdparty/com/google/android/exoplayer2/upstream/
H A DDataSchemeDataSource.java85 int remainingBytes = endPosition - readPosition; in read() local
86 if (remainingBytes == 0) { in read()
89 readLength = Math.min(readLength, remainingBytes); in read()
/dports/mail/thunderbird/thunderbird-91.8.0/mobile/android/geckoview/src/thirdparty/java/org/mozilla/thirdparty/com/google/android/exoplayer2/upstream/
H A DDataSchemeDataSource.java85 int remainingBytes = endPosition - readPosition; in read() local
86 if (remainingBytes == 0) { in read()
89 readLength = Math.min(readLength, remainingBytes); in read()
/dports/science/orthanc-mysql/OrthancMySQL-4.3/MySQL/ThirdPartyDownloads/Orthanc-1.9.3/OrthancFramework/Sources/DicomFormat/
H A DStreamBlockReader.cpp75 size_t remainingBytes = block_.size() - blockPos_; in Read() local
76 stream_.read(&block_[blockPos_], remainingBytes); in Read()
/dports/science/orthanc/Orthanc-1.9.7/OrthancFramework/Sources/DicomFormat/
H A DStreamBlockReader.cpp75 size_t remainingBytes = block_.size() - blockPos_; in Read() local
76 stream_.read(&block_[blockPos_], remainingBytes); in Read()
/dports/science/orthanc-dicomweb/OrthancDicomWeb-1.7/ThirdPartyDownloads/Orthanc-1.9.3/OrthancFramework/Sources/DicomFormat/
H A DStreamBlockReader.cpp75 size_t remainingBytes = block_.size() - blockPos_; in Read() local
76 stream_.read(&block_[blockPos_], remainingBytes); in Read()
/dports/science/orthanc-postgresql/OrthancPostgreSQL-4.0/PostgreSQL/ThirdPartyDownloads/Orthanc-1.9.3/OrthancFramework/Sources/DicomFormat/
H A DStreamBlockReader.cpp75 size_t remainingBytes = block_.size() - blockPos_; in Read() local
76 stream_.read(&block_[blockPos_], remainingBytes); in Read()
/dports/science/orthanc-webviewer/OrthancWebViewer-2.7/ThirdPartyDownloads/Orthanc-1.8.1/OrthancFramework/Sources/DicomFormat/
H A DStreamBlockReader.cpp69 size_t remainingBytes = block_.size() - blockPos_; in Read() local
70 std::streamsize r = stream_.readsome(&block_[blockPos_], remainingBytes); in Read()
/dports/lang/spidermonkey78/firefox-78.9.0/remote/domains/parent/
H A DIO.jsm87 const remainingBytes = fileInfo.size - curPos;
97 chunkSize = Math.max(0, Math.min(size, remainingBytes));
99 chunkSize = Math.min(DEFAULT_CHUNK_SIZE, remainingBytes);
110 eof: remainingBytes - bytes.length == 0,
/dports/www/firefox-esr/firefox-91.8.0/remote/cdp/domains/parent/
H A DIO.jsm83 const remainingBytes = fileInfo.size - curPos;
93 chunkSize = Math.max(0, Math.min(size, remainingBytes));
95 chunkSize = Math.min(DEFAULT_CHUNK_SIZE, remainingBytes);
115 eof: remainingBytes - bytes.length == 0,
/dports/www/firefox/firefox-99.0/remote/cdp/domains/parent/
H A DIO.jsm83 const remainingBytes = fileInfo.size - curPos;
93 chunkSize = Math.max(0, Math.min(size, remainingBytes));
95 chunkSize = Math.min(DEFAULT_CHUNK_SIZE, remainingBytes);
115 eof: remainingBytes - bytes.length == 0,
/dports/mail/thunderbird/thunderbird-91.8.0/remote/cdp/domains/parent/
H A DIO.jsm83 const remainingBytes = fileInfo.size - curPos;
93 chunkSize = Math.max(0, Math.min(size, remainingBytes));
95 chunkSize = Math.min(DEFAULT_CHUNK_SIZE, remainingBytes);
115 eof: remainingBytes - bytes.length == 0,
/dports/www/uwebsockets/uWebSockets-20.8.0/src/
H A DWebSocketContext.h60 …static bool handleFragment(char *data, size_t length, unsigned int remainingBytes, int opCode, boo… in handleFragment()
68 if (!remainingBytes && fin && !webSocketData->fragmentBuffer.length()) { in handleFragment()
108 webSocketData->fragmentBuffer.reserve(length + remainingBytes); in handleFragment()
119 if (!remainingBytes && fin) { in handleFragment()
179 if (!remainingBytes && fin && !webSocketData->controlTipLength) { in handleFragment()
207 if (!remainingBytes && fin) { in handleFragment()
/dports/net/jicmp/jicmp-1.4.4/src/main/java/org/opennms/protocols/icmp/
H A DICMPEchoPacket.java368 int remainingBytes = buf.length - getDataSize(); in loadFromBuffer() local
369 if (m_pad == null || m_pad.length != remainingBytes) { in loadFromBuffer()
370 m_pad = new byte[remainingBytes]; in loadFromBuffer()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webgl/src/resources/html5lib/src/html5lib/
H A Dinputstream.py79 remainingBytes = bytes
83 while bufferIndex < len(self.buffer) and remainingBytes != 0:
84 assert remainingBytes > 0
87 if remainingBytes <= len(bufferedData) - bufferOffset:
88 bytesToRead = remainingBytes
96 remainingBytes -= bytesToRead
100 if remainingBytes:
101 rv.append(self._readStream(remainingBytes))
/dports/lang/spidermonkey60/firefox-60.9.0/testing/web-platform/tests/tools/html5lib/html5lib/
H A Dinputstream.py95 remainingBytes = bytes
99 while bufferIndex < len(self.buffer) and remainingBytes != 0:
100 assert remainingBytes > 0
103 if remainingBytes <= len(bufferedData) - bufferOffset:
104 bytesToRead = remainingBytes
111 remainingBytes -= bytesToRead
115 if remainingBytes:
116 rv.append(self._readStream(remainingBytes))
/dports/www/firefox-legacy/firefox-52.8.0esr/testing/web-platform/tests/tools/html5lib/html5lib/
H A Dinputstream.py95 remainingBytes = bytes
99 while bufferIndex < len(self.buffer) and remainingBytes != 0:
100 assert remainingBytes > 0
103 if remainingBytes <= len(bufferedData) - bufferOffset:
104 bytesToRead = remainingBytes
111 remainingBytes -= bytesToRead
115 if remainingBytes:
116 rv.append(self._readStream(remainingBytes))
/dports/games/openbve/OpenBVE-1.8.2.1/source/Plugins/Formats.Msts/
H A DPlugin.cs166 uint remainingBytes = myReader.ReadUInt32(); in ReadSubBlock()
167 byte[] newBytes = myReader.ReadBytes((int) remainingBytes); in ReadSubBlock()
180 uint remainingBytes = myReader.ReadUInt32(); in ReadSubBlock()
181 byte[] newBytes = myReader.ReadBytes((int) remainingBytes); in ReadSubBlock()
189 uint remainingBytes = myReader.ReadUInt32(); in ReadSubBlock()
190 byte[] newBytes = myReader.ReadBytes((int) remainingBytes); in ReadSubBlock()

1234567891011