Home
last modified time | relevance | path

Searched refs:next_byte (Results 1 – 10 of 10) sorted by relevance

/third_party/ffmpeg/libavformat/
Dtedcaptionsdec.c70 static void next_byte(AVIOContext *pb, int *cur_byte) in next_byte() function
81 next_byte(pb, cur_byte); in skip_spaces()
89 next_byte(pb, cur_byte); in expect_byte()
102 next_byte(pb, cur_byte); in parse_string()
108 next_byte(pb, cur_byte); in parse_string()
120 next_byte(pb, cur_byte); in parse_string()
156 for (; *p; p++, next_byte(pb, cur_byte)) in parse_boolean()
178 next_byte(pb, cur_byte); in parse_int()
193 next_byte(pb, &cur_byte); in parse_file()
236 next_byte(pb, &cur_byte); in parse_file()
[all …]
/third_party/gstreamer/gstplugins_bad/ext/ladspa/
Dgstladspasource.c210 ladspa->next_byte = next_sample * bpf; in gst_ladspa_source_type_do_seek()
261 gint64 next_sample, next_byte; in gst_ladspa_source_type_fill() local
298 offset = ladspa->next_byte; in gst_ladspa_source_type_fill()
301 if (offset != ladspa->next_byte) { in gst_ladspa_source_type_fill()
307 ladspa->next_byte = offset; in gst_ladspa_source_type_fill()
329 next_byte = ladspa->next_byte + (ladspa->reverse ? (-bytes) : bytes); in gst_ladspa_source_type_fill()
354 ladspa->next_byte = next_byte; in gst_ladspa_source_type_fill()
374 ladspa->next_byte = 0; in gst_ladspa_source_type_start()
Dgstladspasource.h61 gint64 next_byte; /* next byte to send */ member
/third_party/gstreamer/gstplugins_bad/ext/lv2/
Dgstlv2source.c61 gint64 next_byte; /* next byte to send */ member
261 lv2->next_byte = next_sample * bpf; in gst_lv2_source_do_seek()
371 gint64 next_sample, next_byte; in gst_lv2_source_fill() local
411 offset = lv2->next_byte; in gst_lv2_source_fill()
414 if (offset != lv2->next_byte) { in gst_lv2_source_fill()
420 lv2->next_byte = offset; in gst_lv2_source_fill()
442 next_byte = lv2->next_byte + (lv2->reverse ? (-bytes) : bytes); in gst_lv2_source_fill()
466 lv2->next_byte = next_byte; in gst_lv2_source_fill()
527 lv2->next_byte = 0; in gst_lv2_source_start()
/third_party/gstreamer/gstplugins_base/gst/audiotestsrc/
Dgstaudiotestsrc.c1355 src->next_byte = 0; in gst_audio_test_src_start()
1392 src->next_byte = next_sample * bpf; in gst_audio_test_src_do_seek()
1438 gint64 next_sample, next_byte; in gst_audio_test_src_fill() local
1478 offset = src->next_byte; in gst_audio_test_src_fill()
1481 if (offset != src->next_byte) { in gst_audio_test_src_fill()
1487 src->next_byte = offset; in gst_audio_test_src_fill()
1514 next_byte = src->next_byte + (src->reverse ? (-bytes) : bytes); in gst_audio_test_src_fill()
1537 src->next_byte = next_byte; in gst_audio_test_src_fill()
Dgstaudiotestsrc.h115 gint64 next_byte; /* next byte to send */ member
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecparsers/
Dnalutils.c94 next_byte: in nal_reader_read()
104 goto next_byte; in nal_reader_read()
/third_party/node/deps/v8/src/parsing/
Dpreparse-data.cc190 uint8_t next_byte = (data & 0x7F); in WriteVarint32() local
193 if (data) next_byte |= 0x80; in WriteVarint32()
194 Add(next_byte & 0xFF); in WriteVarint32()
/third_party/node/deps/v8/src/objects/
Dvalue-serializer.cc302 uint8_t* next_byte = &stack_buffer[0]; in WriteVarint() local
304 *next_byte = (value & 0x7F) | 0x80; in WriteVarint()
305 next_byte++; in WriteVarint()
308 *(next_byte - 1) &= 0x7F; in WriteVarint()
309 WriteRawBytes(stack_buffer, next_byte - stack_buffer); in WriteVarint()
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h19185 const insn_byte_t *next_byte; member