Lines Matching defs:length
101 unsigned int length = byte & ~0xC0;
109 /* Get length and offset (if required) */
110 if (length == 0) {
112 length = bytestream2_get_byte(&g);
115 length = bytestream2_get_le16(&g);
116 if (code == 2 && length == 0)
125 if (dst + (length << lentab[code]) > frame_end)
130 if (length >= bytestream2_get_bytes_left(&g)) {
134 bytestream2_get_buffer(&g, dst, length);
135 dst += length;
139 length *= 4; // Convert dwords to bytes.
142 while (length--)
146 dst += length;
151 while (length--) {