Lines Matching defs:size
138 SCALED_BLOCK, ///< block has size 16x16
214 * Merge two consequent lists of equal size depending on bits read.
218 * @param src pointer to the head of the first list (the second lists starts at src+size)
219 * @param size input lists size
221 static void merge(GetBitContext *gb, uint8_t *dst, uint8_t *src, int size)
223 uint8_t *src2 = src + size;
224 int size2 = size;
229 size--;
234 } while (size && size2);
236 while (size--)
276 int size = 1 << i;
277 for (t = 0; t < 16; t += size << 1)
278 merge(gb, out + t, in + t, size);
1262 int bits_count = pkt->size << 3;
1311 return pkt->size;