Searched refs:len_mask (Results 1 – 7 of 7) sorted by relevance
/third_party/gstreamer/gstplugins_good/gst/matroska/ |
D | ebml-read.c | 50 gint len_mask = 0x80, read = 1, n = 1, num_ffs = 0; in gst_ebml_peek_id_length() local 70 while (read <= 4 && !(total & len_mask)) { in gst_ebml_peek_id_length() 72 len_mask >>= 1; in gst_ebml_peek_id_length() 92 len_mask = 0x80; in gst_ebml_peek_id_length() 94 while (read <= 8 && !(total & len_mask)) { in gst_ebml_peek_id_length() 96 len_mask >>= 1; in gst_ebml_peek_id_length() 100 if ((total &= (len_mask - 1)) == len_mask - 1) in gst_ebml_peek_id_length()
|
D | matroska-parse.c | 1525 gint len_mask = 0x80, read = 1, n = 1, num_ffs = 0; in gst_matroska_ebmlnum_uint() local 1533 while (read <= 8 && !(total & len_mask)) { in gst_matroska_ebmlnum_uint() 1535 len_mask >>= 1; in gst_matroska_ebmlnum_uint() 1540 if ((total &= (len_mask - 1)) == len_mask - 1) in gst_matroska_ebmlnum_uint()
|
D | matroska-demux.c | 3579 gint len_mask = 0x80, read = 1, n = 1, num_ffs = 0; in gst_matroska_ebmlnum_uint() local 3587 while (read <= 8 && !(total & len_mask)) { in gst_matroska_ebmlnum_uint() 3589 len_mask >>= 1; in gst_matroska_ebmlnum_uint() 3594 if ((total &= (len_mask - 1)) == len_mask - 1) in gst_matroska_ebmlnum_uint()
|
/third_party/gstreamer/gstplugins_good/tests/check/elements/ |
D | matroskamux.c | 457 gint len_mask = 0x80, read = 1; in read_length() local 464 while (read <= 8 && !(total & len_mask)) { in read_length() 466 len_mask >>= 1; in read_length() 468 total &= (len_mask - 1); in read_length()
|
/third_party/f2fs-tools/tools/sg_write_buffer/ |
D | sg_pt_linux_nvme.c | 898 uint8_t len_mask[16]; /* len=len_mask[0], then mask for cdb[1]... */ member 969 sg_put_unaligned_be16(oip->len_mask[0], arr + offset + 6); in sntl_rep_opcodes() 1008 u = oip->len_mask[0]; in sntl_rep_opcodes() 1013 oip->len_mask[k] : 0xff; in sntl_rep_opcodes()
|
/third_party/libdrm/intel/ |
D | intel_decode.c | 233 int len_mask; in decode_mi() member 271 (data[0] & opcodes_mi[opcode].len_mask) + 2; in decode_mi() 3144 uint32_t len_mask; in decode_3d_965() member 3259 len = (data[0] & opcode_3d->len_mask) + 2; in decode_3d_965()
|
/third_party/ffmpeg/libavformat/ |
D | matroskadec.c | 1572 int len_mask = 0x80, size = 1, n = 1, i; in matroska_probe() local 1580 while (size <= 8 && !(total & len_mask)) { in matroska_probe() 1582 len_mask >>= 1; in matroska_probe() 1586 total &= (len_mask - 1); in matroska_probe()
|