Lines Matching refs:dst_size
550 * @param dst_size the destination plane size in bytes
555 static int decode_byterun(uint8_t *dst, int dst_size,
559 for (x = 0; x < dst_size && bytestream2_get_bytes_left(gb) > 0;) {
563 length = FFMIN3(value + 1, dst_size - x, bytestream2_get_bytes_left(gb));
568 length = FFMIN(-value + 1, dst_size - x);
575 if (x < dst_size) {
577 memset(dst+x, 0, dst_size - x);
810 int w, int bpp, int dst_size)
820 bytestream2_init_writer(&pb, dst, dst_size);
863 int w, int xor, int bpp, int dst_size)
873 bytestream2_init_writer(&pb, dst, dst_size);
898 if (xor && ofsdst < dst_size) {
913 if (xor && ofsdst < dst_size) {
930 int w, int h, int bpp, int dst_size)
974 if (offset >= dst_size)
1016 if (noffset >= dst_size)
1041 int w, int bpp, int dst_size)
1055 bytestream2_init_writer(&pb, dst, dst_size);
1109 int w, int bpp, int dst_size)
1124 bytestream2_init_writer(&pb, dst, dst_size);
1195 int w, int bpp, int dst_size)
1205 bytestream2_init_writer(&pb, dst, dst_size);
1255 int w, int bpp, int dst_size)
1267 bytestream2_init_writer(&pb, dst, dst_size);
1337 int w, int flag, int bpp, int dst_size)
1350 bytestream2_init_writer(&pb, dst, dst_size);
1396 int w, int flag, int bpp, int dst_size)
1409 bytestream2_init_writer(&pb, dst, dst_size);
1451 int w, int flag, int bpp, int dst_size)
1467 bytestream2_init_writer(&pb, dst, dst_size);
1492 if (count > dst_size)