Lines Matching defs:count
308 int index, count;
311 count = bytestream2_get_byte(&c->gb) + 1;
313 if (index + count > 256)
315 if (bytestream2_get_bytes_left(&c->gb) < 3 * count)
319 for (i = 0; i < count; i++) {
377 int count;
383 count = FFABS(code) + 1;
385 if (dst + count > end)
388 memset(dst, bytestream2_get_byteu(&c->gb), count);
390 bytestream2_get_buffer(&c->gb, dst, count);
391 dst += count;