Lines Matching refs:tmp_buf
542 int32_t tmp_buf[8 * 32 + 15];
543 int32_t *tmp_buf_ptr = tmp_buf + 15;
761 static void hevc_idct_transpose_32x8_to_8x32(int16_t *coeffs, int16_t *tmp_buf)
774 __lsx_vst(in0, tmp_buf, 0);
775 __lsx_vst(in1, tmp_buf, 16);
776 __lsx_vst(in2, tmp_buf, 32);
777 __lsx_vst(in3, tmp_buf, 48);
778 __lsx_vst(in4, tmp_buf, 64);
779 __lsx_vst(in5, tmp_buf, 80);
780 __lsx_vst(in6, tmp_buf, 96);
781 __lsx_vst(in7, tmp_buf, 112);
782 tmp_buf += 64;
786 static void hevc_idct_transpose_8x32_to_32x8(int16_t *tmp_buf, int16_t *coeffs)
792 DUP4_ARG2(__lsx_vld, tmp_buf, 0, tmp_buf, 16, tmp_buf, 32,
793 tmp_buf, 48, in0, in1, in2, in3);
794 DUP4_ARG2(__lsx_vld, tmp_buf, 64, tmp_buf, 80, tmp_buf, 96,
795 tmp_buf, 112, in4, in5, in6, in7);
796 tmp_buf += 64;
815 int16_t tmp_buf[8 * 32 + 31];
816 int16_t *tmp_buf_ptr = tmp_buf + 31;