Searched refs:max_offset (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/media/formats/common/
H A Doffset_byte_queue.cc50 bool OffsetByteQueue::Trim(int64 max_offset) { argument
51 if (max_offset < head_) return true;
52 if (max_offset > tail()) {
56 Pop(max_offset - head_);
H A Doffset_byte_queue.h37 // Marks the bytes up to (but not including) |max_offset| as ready for
42 // including the case where |max_offset| is less than the current head.
43 // Returns false if |max_offset| > tail() (although all bytes currently
45 bool Trim(int64 max_offset);
/external/chromium_org/media/formats/mp2t/
H A Des_parser_adts.cc64 int max_offset = es_size - kADTSHeaderMinSize; local
65 if (max_offset <= 0)
68 for (int offset = 0; offset < max_offset; offset++) {
106 es_queue_->Pop(max_offset);
H A Des_parser_mpeg1audio.cc113 int max_offset = es_size - MPEG1AudioStreamParser::kHeaderSize; local
114 if (max_offset <= 0)
117 for (int offset = 0; offset < max_offset; offset++) {
158 es_queue_->Pop(max_offset);
/external/libvpx/libvpx/third_party/nestegg/include/nestegg/
H A Dnestegg.h156 @param max_offset Optional maximum offset to be read. Set -1 to ignore.
159 int nestegg_init(nestegg ** context, nestegg_io io, nestegg_log callback, int64_t max_offset);
191 @param max_offset Optional maximum offset to be read. Set -1 to ignore.
199 int64_t max_offset, int64_t * start_pos,
/external/chromium_org/third_party/brotli/src/woff2/
H A Dfont.cc83 size_t max_offset = 12ULL + 16ULL * font.num_tables; local
88 max_offset = std::max(max_offset, end_offset);
90 return max_offset;
/external/chromium_org/android_webview/browser/
H A Dbrowser_view_renderer.cc567 gfx::Vector2d max_offset = max_scroll_offset(); local
573 if (max_offset.x()) {
575 max_offset.x());
577 if (max_offset.y()) {
579 max_offset.y());
622 gfx::Vector2d max_offset = max_scroll_offset(); local
627 scroll_offset.set_x((scroll_offset_dip.x() * max_offset.x()) /
632 scroll_offset.set_y((scroll_offset_dip.y() * max_offset.y()) /
638 DCHECK_LE(scroll_offset.x(), max_offset.x());
639 DCHECK_LE(scroll_offset.y(), max_offset
[all...]
/external/chromium_org/content/browser/quota/
H A Dquota_reservation_manager_unittest.cc123 int64 Write(int64 max_offset) { argument
127 if (max_written_offset_ < max_offset) {
128 consumed = max_offset - max_written_offset_;
129 max_written_offset_ = max_offset;
131 if (GetFileSize(path_) < max_offset)
132 SetFileSize(path_, max_offset);
/external/chromium_org/cc/layers/
H A Dscrollbar_layer_impl_base.cc224 float max_offset = track_length - thumb_length; local
225 thumb_offset += static_cast<int>(ratio * max_offset);
H A Dlayer_impl.cc1210 gfx::Vector2dF max_offset(
1214 max_offset.Scale(1 / scale_factor);
1215 max_offset.SetToMax(gfx::Vector2dF());
1216 return gfx::ToFlooredVector2d(max_offset);
1220 gfx::Vector2dF max_offset = MaxScrollOffset(); local
1224 clamped_offset.SetToMin(max_offset);
/external/chromium_org/ppapi/proxy/
H A Dfile_io_resource.cc286 uint64_t max_offset = 0; local
291 uint64_t max_offset = offset + bytes_to_write; local
292 if (max_offset > static_cast<uint64_t>(kint64max))
294 increase = static_cast<int64_t>(max_offset) - max_written_offset_;
318 max_written_offset_ = max_offset;
596 int64_t max_offset = offset + bytes_to_write; local
597 if (max_written_offset_ < max_offset)
598 max_written_offset_ = max_offset;
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
H A Dgl_XML.py930 max_offset = -1
932 if func.offset > max_offset:
933 max_offset = func.offset
936 temp = [None for i in range(0, max_offset + 1)]
943 for i in range(0, max_offset + 1):
/external/mesa3d/src/mapi/glapi/gen/
H A Dgl_XML.py930 max_offset = -1
932 if func.offset > max_offset:
933 max_offset = func.offset
936 temp = [None for i in range(0, max_offset + 1)]
943 for i in range(0, max_offset + 1):
/external/chromium_org/components/nacl/loader/
H A Dnacl_ipc_adapter.cc130 int64_t max_offset = offset + length;
131 if (max_offset < 0)
136 int64_t increase = max_offset - file_io->max_written_offset();
/external/libvpx/libvpx/third_party/nestegg/src/
H A Dnestegg.c996 ne_parse(nestegg * ctx, struct ebml_element_desc * top_level, int64_t max_offset) argument
1007 if (max_offset > 0 && ne_io_tell(ctx->io) >= max_offset) {
1533 ne_init_cue_points(nestegg * ctx, int64_t max_offset) argument
1575 r = ne_parse(ctx, ne_cues_elements, max_offset);
1652 ne_match_webm(nestegg_io io, int64_t max_offset) argument
1683 * max_offset is not on a valid element end point. We only want to check
1685 ne_parse(ctx, NULL, max_offset);
1699 nestegg_init(nestegg ** context, nestegg_io io, nestegg_log callback, int64_t max_offset) argument
1735 r = ne_parse(ctx, NULL, max_offset);
1821 nestegg_get_cue_point(nestegg * ctx, unsigned int cluster_num, int64_t max_offset, int64_t * start_pos, int64_t * end_pos, uint64_t * tstamp) argument
[all...]
/external/chromium_org/chrome/browser/autocomplete/
H A Dhistory_quick_provider_unittest.cc498 const size_t max_offset = url.length() - ((6 * 2) + 7); local
501 EXPECT_LT(citer->offset, max_offset);
/external/chromium_org/content/renderer/accessibility/
H A Dblink_ax_tree_source.cc477 const gfx::Size& max_offset = document.maximumScrollOffset(); local
478 dst->AddIntAttribute(ui::AX_ATTR_SCROLL_X_MAX, max_offset.width());
479 dst->AddIntAttribute(ui::AX_ATTR_SCROLL_Y_MAX, max_offset.height());
/external/chromium_org/ui/gfx/
H A Drender_text.cc859 int max_offset = 0; local
866 max_offset = extra_content;
874 max_offset = (extra_content - cursor_width) / 2;
882 else if (horizontal_offset > max_offset)
883 horizontal_offset = max_offset;
/external/kernel-headers/original/uapi/linux/
H A Dbtrfs.h259 __u64 max_offset; member in struct:btrfs_ioctl_search_key
/external/valgrind/main/coregrind/m_debuginfo/
H A Dminilzo-inl.c3046 #define LZO_CHECK_MPOS_DET(m_pos,m_off,in,ip,max_offset) \
3047 (m_pos == NULL || (m_off = pd(ip, m_pos)) > max_offset)
3049 #define LZO_CHECK_MPOS_NON_DET(m_pos,m_off,in,ip,max_offset) \
3054 m_off > max_offset )))
3058 #define LZO_CHECK_MPOS_DET(m_pos,m_off,in,ip,max_offset) \
3060 ((m_off = pd(ip, in) - m_off) > max_offset) || \
3063 #define LZO_CHECK_MPOS_NON_DET(m_pos,m_off,in,ip,max_offset) \
3065 ((m_off = pd(ip, in) - m_off) > max_offset) || \
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 4582 milliseconds