Home
last modified time | relevance | path

Searched refs:_max_offset (Results 1 – 25 of 28) sorted by relevance

12

/dports/www/chromium-legacy/chromium-88.0.4324.182/media/formats/common/
H A Doffset_byte_queue.cc50 bool OffsetByteQueue::Trim(int64_t _max_offset) { in Trim() argument
51 if (_max_offset < head_) return true; in Trim()
52 if (_max_offset > tail()) { in Trim()
56 Pop(_max_offset - head_); in Trim()
H A Doffset_byte_queue.h47 bool Trim(int64_t _max_offset);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/formats/common/
H A Doffset_byte_queue.cc49 bool OffsetByteQueue::Trim(int64_t _max_offset) { in Trim() argument
50 if (_max_offset < head_) return true; in Trim()
51 if (_max_offset > tail()) { in Trim()
55 Pop(_max_offset - head_); in Trim()
H A Doffset_byte_queue.h47 bool Trim(int64_t _max_offset);
/dports/www/trafficserver/trafficserver-9.1.1/iocore/net/quic/
H A DQUICIncomingFrameBuffer.cc130 this->_max_offset = 0; in clear()
159 if (this->_max_offset > this->_fin_offset) { in _check_and_set_fin_flag()
166 this->_max_offset = std::max(offset + len, this->_max_offset); in _check_and_set_fin_flag()
180 return this->_max_offset; in transfer_progress()
H A DQUICIncomingFrameBuffer.h70 QUICOffset _max_offset = 0; variable
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/formats/mp2t/
H A Des_parser_mpeg1audio.cc111 int _max_offset = es_size - MPEG1AudioStreamParser::kHeaderSize; in LookForMpeg1AudioFrame() local
112 if (_max_offset <= 0) in LookForMpeg1AudioFrame()
115 for (int offset = 0; offset < _max_offset; offset++) { in LookForMpeg1AudioFrame()
156 es_queue_->Pop(_max_offset); in LookForMpeg1AudioFrame()
H A Des_parser_adts.cc65 int _max_offset = es_size - kADTSHeaderMinSize; in LookForAdtsFrame() local
66 if (_max_offset <= 0) in LookForAdtsFrame()
69 for (int offset = 0; offset < _max_offset; offset++) { in LookForAdtsFrame()
109 es_queue_->Pop(_max_offset); in LookForAdtsFrame()
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/formats/mp2t/
H A Des_parser_mpeg1audio.cc111 int _max_offset = es_size - MPEG1AudioStreamParser::kHeaderSize; in LookForMpeg1AudioFrame() local
112 if (_max_offset <= 0) in LookForMpeg1AudioFrame()
115 for (int offset = 0; offset < _max_offset; offset++) { in LookForMpeg1AudioFrame()
158 es_queue_->Pop(_max_offset); in LookForMpeg1AudioFrame()
H A Des_parser_adts.cc65 int _max_offset = es_size - kADTSHeaderMinSize; in LookForAdtsFrame() local
66 if (_max_offset <= 0) in LookForAdtsFrame()
69 for (int offset = 0; offset < _max_offset; offset++) { in LookForAdtsFrame()
109 es_queue_->Pop(_max_offset); in LookForAdtsFrame()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ppapi/proxy/
H A Dfile_io_resource.cc287 uint64_t _max_offset = 0; in Write() local
292 uint64_t _max_offset = offset + bytes_to_write; in Write() local
293 if (_max_offset > in Write()
297 increase = static_cast<int64_t>(_max_offset) - max_written_offset_; in Write()
321 max_written_offset_ = _max_offset; in Write()
597 int64_t _max_offset = offset + bytes_to_write; in OnRequestWriteQuotaComplete() local
598 if (max_written_offset_ < _max_offset) in OnRequestWriteQuotaComplete()
599 max_written_offset_ = _max_offset; in OnRequestWriteQuotaComplete()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ppapi/proxy/
H A Dfile_io_resource.cc287 uint64_t _max_offset = 0; in Write() local
294 uint64_t _max_offset = offset + bytes_to_write; in Write() local
295 if (_max_offset > in Write()
299 increase = static_cast<int64_t>(_max_offset) - max_written_offset_; in Write()
320 max_written_offset_ = _max_offset; in Write()
595 int64_t _max_offset = offset + bytes_to_write; in OnRequestWriteQuotaComplete() local
596 if (max_written_offset_ < _max_offset) in OnRequestWriteQuotaComplete()
597 max_written_offset_ = _max_offset; in OnRequestWriteQuotaComplete()
/dports/graphics/py-pyglet/pyglet-1.5.21/pyglet/media/
H A Dsynthesis.py193 self._max_offset = int(self._bytes_per_second * self._duration)
198 self._max_offset &= 0xfffffffe
202 num_bytes = min(num_bytes, self._max_offset - self._offset)
224 self._offset = min(max(self._offset, 0), self._max_offset)
244 data = self.get_audio_data(self._max_offset).get_string_data()
/dports/graphics/py-pyglet150/pyglet-1.5.0/pyglet/media/
H A Dsynthesis.py193 self._max_offset = int(self._bytes_per_second * self._duration)
198 self._max_offset &= 0xfffffffe
202 num_bytes = min(num_bytes, self._max_offset - self._offset)
224 self._offset = min(max(self._offset, 0), self._max_offset)
244 data = self.get_audio_data(self._max_offset).get_string_data()
/dports/www/chromium-legacy/chromium-88.0.4324.182/cc/layers/
H A Dscrollbar_layer_impl_base.cc222 float _max_offset = track_length - thumb_length; in ComputeThumbQuadRectWithThumbThicknessScale() local
223 thumb_offset += static_cast<int>(ratio * _max_offset); in ComputeThumbQuadRectWithThumbThicknessScale()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/cc/layers/
H A Dscrollbar_layer_impl_base.cc223 float _max_offset = track_length - thumb_length; in ComputeThumbQuadRectWithThumbThicknessScale() local
224 thumb_offset += static_cast<int>(ratio * _max_offset); in ComputeThumbQuadRectWithThumbThicknessScale()
/dports/graphics/py-pyglet/pyglet-1.5.21/tests/integration/media/
H A Dtest_player.py37 return self.bytes_read == self._max_offset
H A Dtest_driver.py54 return self.bytes_read == self._max_offset
/dports/graphics/py-pyglet150/pyglet-1.5.0/tests/integration/media/
H A Dtest_player.py37 return self.bytes_read == self._max_offset
H A Dtest_driver.py54 return self.bytes_read == self._max_offset
/dports/graphics/py-pyglet/pyglet-1.5.21/tests/unit/media/
H A Dtest_synthesis.py86 generated_data = source.get_audio_data(source._max_offset)
/dports/graphics/py-pyglet150/pyglet-1.5.0/tests/unit/media/
H A Dtest_synthesis.py86 generated_data = source.get_audio_data(source._max_offset)
/dports/graphics/py-pyglet/pyglet-1.5.21/pyglet/media/codecs/
H A Dbase.py502 self._max_offset = len(data)
/dports/graphics/py-pyglet150/pyglet-1.5.0/pyglet/media/codecs/
H A Dbase.py486 self._max_offset = len(data)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/gfx/
H A Drender_text.cc1172 int _max_offset = 0; in SetDisplayOffset() local
1179 _max_offset = extra_content; in SetDisplayOffset()
1187 _max_offset = (extra_content - cursor_width) / 2; in SetDisplayOffset()
1195 else if (horizontal_offset > _max_offset) in SetDisplayOffset()
1196 horizontal_offset = _max_offset; in SetDisplayOffset()

12