Home
last modified time | relevance | path

Searched refs:next_byte (Results 1 – 4 of 4) 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/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