Home
last modified time | relevance | path

Searched refs:run_len (Results 1 – 7 of 7) sorted by relevance

/third_party/gstreamer/gstplugins_bad/gst/dvdspu/
Dgstspu-pgs.c101 guint16 run_len; in dump_rle_data() local
106 run_len = 1; in dump_rle_data()
113 run_len = (data[0] & 0x3f); in dump_rle_data()
120 run_len = ((data[0] << 8) | data[1]) & 0x3fff; in dump_rle_data()
127 run_len = (data[0] & 0x3f); in dump_rle_data()
135 run_len = ((data[0] << 8) | data[1]) & 0x3fff; in dump_rle_data()
140 run_len = 0; in dump_rle_data()
150 for (i = 0; i < run_len; i++) in dump_rle_data()
153 for (i = 0; i < run_len; i++) in dump_rle_data()
156 if (!run_len || (x + run_len) > obj_w) in dump_rle_data()
[all …]
/third_party/e2fsprogs/e2fsck/
Dreadahead.c28 blk64_t run_len; member
39 if (!pr->run_len || db->blk != pr->run_start + pr->run_len) { in readahead_dir_block()
40 if (pr->run_len) { in readahead_dir_block()
43 pr->run_len); in readahead_dir_block()
45 pr->run_start, pr->run_len, in readahead_dir_block()
49 pr->run_len = 0; in readahead_dir_block()
51 pr->run_len += count; in readahead_dir_block()
77 if (pr.run_len) in e2fsck_readahead_dblist()
79 pr.run_len); in e2fsck_readahead_dblist()
/third_party/grpc/third_party/upb/upb/pb/
Dencoder.c206 size_t run_len; in accumulate() local
208 run_len = e->ptr - e->runbegin; in accumulate()
209 e->segptr->seglen += run_len; in accumulate()
210 top(e)->msglen += run_len; in accumulate()
/third_party/ffmpeg/libavcodec/
Dsanm.c533 int opcode, color, run_len, left = out_size; in rle_decode() local
537 run_len = (opcode >> 1) + 1; in rle_decode()
538 if (run_len > left || bytestream2_get_bytes_left(&ctx->gb) <= 0) in rle_decode()
543 memset(dst, color, run_len); in rle_decode()
545 if (bytestream2_get_bytes_left(&ctx->gb) < run_len) in rle_decode()
547 bytestream2_get_bufferu(&ctx->gb, dst, run_len); in rle_decode()
550 dst += run_len; in rle_decode()
551 left -= run_len; in rle_decode()
Don2avc.c116 int band = 0, i, band_type, run_len, run; in on2avc_decode_band_types() local
120 run_len = 1; in on2avc_decode_band_types()
123 if (run > num_bands - band - run_len) { in on2avc_decode_band_types()
127 run_len += run; in on2avc_decode_band_types()
129 for (i = band; i < band + run_len; i++) { in on2avc_decode_band_types()
131 c->band_run_end[i] = band + run_len; in on2avc_decode_band_types()
133 band += run_len; in on2avc_decode_band_types()
Dh264_cavlc.c219 static const uint8_t run_len[7][16]={ variable
397 &run_len [i][0], 1, 1, in ff_h264_decode_init_vlc()
404 &run_len [6][0], 1, 1, in ff_h264_decode_init_vlc()
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dupb.c8186 size_t run_len; in accumulate() local
8188 run_len = e->ptr - e->runbegin; in accumulate()
8189 e->segptr->seglen += run_len; in accumulate()
8190 top(e)->msglen += run_len; in accumulate()