Lines Matching defs:out

271 void ff_ivi_inverse_haar_8x8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
312 memset(out, 0, 8 * sizeof(out[0]));
316 out[0], out[1], out[2], out[3],
317 out[4], out[5], out[6], out[7],
321 out += pitch;
326 void ff_ivi_row_haar8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
337 memset(out, 0, 8 * sizeof(out[0]));
341 out[0], out[1], out[2], out[3],
342 out[4], out[5], out[6], out[7],
346 out += pitch;
351 void ff_ivi_col_haar8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
363 out[0 * pitch], out[1 * pitch],
364 out[2 * pitch], out[3 * pitch],
365 out[4 * pitch], out[5 * pitch],
366 out[6 * pitch], out[7 * pitch],
369 out[0 * pitch] = out[1 * pitch] =
370 out[2 * pitch] = out[3 * pitch] =
371 out[4 * pitch] = out[5 * pitch] =
372 out[6 * pitch] = out[7 * pitch] = 0;
375 out++;
380 void ff_ivi_inverse_haar_4x4(const int32_t *in, int16_t *out, ptrdiff_t pitch,
415 memset(out, 0, 4 * sizeof(out[0]));
418 out[0], out[1], out[2], out[3],
422 out += pitch;
427 void ff_ivi_row_haar4(const int32_t *in, int16_t *out, ptrdiff_t pitch,
437 memset(out, 0, 4 * sizeof(out[0]));
440 out[0], out[1], out[2], out[3],
444 out += pitch;
449 void ff_ivi_col_haar4(const int32_t *in, int16_t *out, ptrdiff_t pitch,
460 out[0 * pitch], out[1 * pitch],
461 out[2 * pitch], out[3 * pitch],
464 out[0 * pitch] = out[1 * pitch] =
465 out[2 * pitch] = out[3 * pitch] = 0;
468 out++;
473 void ff_ivi_dc_haar_2d(const int32_t *in, int16_t *out, ptrdiff_t pitch,
481 for (y = 0; y < blk_size; out += pitch, y++) {
483 out[x] = dc_coeff;
537 void ff_ivi_inverse_slant_8x8(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags)
565 memset(out, 0, 8*sizeof(out[0]));
568 out[0], out[1], out[2], out[3], out[4], out[5], out[6], out[7],
572 out += pitch;
577 void ff_ivi_inverse_slant_4x4(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags)
605 out[0] = out[1] = out[2] = out[3] = 0;
608 out[0], out[1], out[2], out[3],
612 out += pitch;
617 void ff_ivi_dc_slant_2d(const int32_t *in, int16_t *out, ptrdiff_t pitch, int blk_size)
624 for (y = 0; y < blk_size; out += pitch, y++) {
626 out[x] = dc_coeff;
630 void ff_ivi_row_slant8(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags)
638 memset(out, 0, 8*sizeof(out[0]));
641 out[0], out[1], out[2], out[3], out[4], out[5], out[6], out[7],
645 out += pitch;
650 void ff_ivi_dc_row_slant(const int32_t *in, int16_t *out, ptrdiff_t pitch, int blk_size)
658 out[x] = dc_coeff;
660 out += pitch;
662 for (y = 1; y < blk_size; out += pitch, y++) {
664 out[x] = 0;
668 void ff_ivi_col_slant8(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags)
681 out[0], out[pitch], out[row2], out[row2 + pitch], out[row4],
682 out[row4 + pitch], out[row4 + row2], out[row8 - pitch],
685 out[0] = out[pitch] = out[row2] = out[row2 + pitch] = out[row4] =
686 out[row4 + pitch] = out[row4 + row2] = out[row8 - pitch] = 0;
690 out++;
695 void ff_ivi_dc_col_slant(const int32_t *in, int16_t *out, ptrdiff_t pitch, int blk_size)
702 for (y = 0; y < blk_size; out += pitch, y++) {
703 out[0] = dc_coeff;
705 out[x] = 0;
709 void ff_ivi_row_slant4(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags)
717 memset(out, 0, 4*sizeof(out[0]));
720 out[0], out[1], out[2], out[3],
724 out += pitch;
729 void ff_ivi_col_slant4(const int32_t *in, int16_t *out, ptrdiff_t pitch, const uint8_t *flags)
740 out[0], out[pitch], out[row2], out[row2 + pitch],
743 out[0] = out[pitch] = out[row2] = out[row2 + pitch] = 0;
747 out++;
752 void ff_ivi_put_pixels_8x8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
757 for (y = 0; y < 8; out += pitch, in += 8, y++)
759 out[x] = in[x];
762 void ff_ivi_put_dc_pixel_8x8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
767 out[0] = in[0];
768 memset(out + 1, 0, 7*sizeof(out[0]));
769 out += pitch;
771 for (y = 1; y < 8; out += pitch, y++)
772 memset(out, 0, 8*sizeof(out[0]));