Home
last modified time | relevance | path

Searched refs:bytes_to_skip (Results 1 – 9 of 9) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dvc1_parser.c55 size_t bytes_to_skip; member
143 int i = vpc->bytes_to_skip; in vc1_parse()
236 vpc->bytes_to_skip = 0; in vc1_parse()
250 vpc->bytes_to_skip = 4; in vc1_parse()
252 vpc->bytes_to_skip += next; in vc1_parse()
283 vpc->bytes_to_skip = 0; in vc1_parse_init()
/third_party/gstreamer/gstplugins_good/gst/isomp4/
Dqtatomparser.h58 guint bytes_to_skip, guint32 * val) in qt_atom_parser_skipn_and_get_uint32() argument
60 if (G_UNLIKELY (gst_byte_reader_get_remaining (parser) < (bytes_to_skip + 4))) in qt_atom_parser_skipn_and_get_uint32()
63 gst_byte_reader_skip_unchecked (parser, bytes_to_skip); in qt_atom_parser_skipn_and_get_uint32()
/third_party/cef/libcef_dll/ctocpp/
Dresource_handler_ctocpp.cc116 int64 bytes_to_skip, in Skip() argument
133 int _retval = _struct->skip(_struct, bytes_to_skip, &bytes_skipped, in Skip()
Dresource_handler_ctocpp.h46 bool Skip(int64 bytes_to_skip,
/third_party/cef/libcef_dll/cpptoc/
Dresource_handler_cpptoc.cc135 int64 bytes_to_skip, in resource_handler_skip() argument
159 bytes_to_skip, bytes_skippedVal, in resource_handler_skip()
/third_party/cef/include/capi/
Dcef_resource_handler_capi.h161 int64 bytes_to_skip,
/third_party/cef/include/
Dcef_resource_handler.h152 virtual bool Skip(int64 bytes_to_skip, in Skip() argument
/third_party/gstreamer/gstplugins_base/gst/typefind/
Dgsttypefindfunctions.c61 data_scan_ctx_advance (GstTypeFind * tf, DataScanCtx * c, guint bytes_to_skip) in data_scan_ctx_advance() argument
63 c->offset += bytes_to_skip; in data_scan_ctx_advance()
64 if (G_LIKELY (c->size > bytes_to_skip)) { in data_scan_ctx_advance()
65 c->size -= bytes_to_skip; in data_scan_ctx_advance()
66 c->data += bytes_to_skip; in data_scan_ctx_advance()
/third_party/cef/tests/ceftests/
Durlrequest_unittest.cc690 bool Skip(int64 bytes_to_skip, in Skip() argument
696 std::min(bytes_to_skip, static_cast<int64>(size - offset_)); in Skip()