FFmpeg
|
#include <stdint.h>
#include <msa.h>
Go to the source code of this file.
Macros | |
#define | LD_B(RTYPE, psrc) *((RTYPE *)(psrc)) |
#define | LD_UB(...) LD_B(v16u8, __VA_ARGS__) |
#define | LD_SB(...) LD_B(v16i8, __VA_ARGS__) |
#define | LD_H(RTYPE, psrc) *((RTYPE *)(psrc)) |
#define | LD_UH(...) LD_H(v8u16, __VA_ARGS__) |
#define | LD_SH(...) LD_H(v8i16, __VA_ARGS__) |
#define | LD_W(RTYPE, psrc) *((RTYPE *)(psrc)) |
#define | LD_UW(...) LD_W(v4u32, __VA_ARGS__) |
#define | LD_SW(...) LD_W(v4i32, __VA_ARGS__) |
#define | ST_B(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) |
#define | ST_UB(...) ST_B(v16u8, __VA_ARGS__) |
#define | ST_SB(...) ST_B(v16i8, __VA_ARGS__) |
#define | ST_H(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) |
#define | ST_UH(...) ST_H(v8u16, __VA_ARGS__) |
#define | ST_SH(...) ST_H(v8i16, __VA_ARGS__) |
#define | ST_W(RTYPE, in, pdst) *((RTYPE *)(pdst)) = (in) |
#define | ST_UW(...) ST_W(v4u32, __VA_ARGS__) |
#define | ST_SW(...) ST_W(v4i32, __VA_ARGS__) |
#define | LW(psrc) |
#define | LD(psrc) |
#define | SH(val, pdst) |
#define | SW(val, pdst) |
#define | SD(val, pdst) |
#define | LW4(psrc, stride, out0, out1, out2, out3) |
#define | LD2(psrc, stride, out0, out1) |
#define | LD4(psrc, stride, out0, out1, out2, out3) |
#define | SW4(in0, in1, in2, in3, pdst, stride) |
#define | SD4(in0, in1, in2, in3, pdst, stride) |
#define | LD_B2(RTYPE, psrc, stride, out0, out1) |
#define | LD_UB2(...) LD_B2(v16u8, __VA_ARGS__) |
#define | LD_SB2(...) LD_B2(v16i8, __VA_ARGS__) |
#define | LD_B3(RTYPE, psrc, stride, out0, out1, out2) |
#define | LD_UB3(...) LD_B3(v16u8, __VA_ARGS__) |
#define | LD_SB3(...) LD_B3(v16i8, __VA_ARGS__) |
#define | LD_B4(RTYPE, psrc, stride, out0, out1, out2, out3) |
#define | LD_UB4(...) LD_B4(v16u8, __VA_ARGS__) |
#define | LD_SB4(...) LD_B4(v16i8, __VA_ARGS__) |
#define | LD_B5(RTYPE, psrc, stride, out0, out1, out2, out3, out4) |
#define | LD_UB5(...) LD_B5(v16u8, __VA_ARGS__) |
#define | LD_SB5(...) LD_B5(v16i8, __VA_ARGS__) |
#define | LD_B6(RTYPE, psrc, stride, out0, out1, out2, out3, out4, out5) |
#define | LD_SB6(...) LD_B6(v16i8, __VA_ARGS__) |
#define | LD_B7(RTYPE, psrc, stride,out0, out1, out2, out3, out4, out5, out6) |
#define | LD_SB7(...) LD_B7(v16i8, __VA_ARGS__) |
#define | LD_B8(RTYPE, psrc, stride,out0, out1, out2, out3, out4, out5, out6, out7) |
#define | LD_UB8(...) LD_B8(v16u8, __VA_ARGS__) |
#define | LD_SB8(...) LD_B8(v16i8, __VA_ARGS__) |
#define | LD_H2(RTYPE, psrc, stride, out0, out1) |
#define | LD_UH2(...) LD_H2(v8u16, __VA_ARGS__) |
#define | LD_SH2(...) LD_H2(v8i16, __VA_ARGS__) |
#define | LD_H4(RTYPE, psrc, stride, out0, out1, out2, out3) |
#define | LD_UH4(...) LD_H4(v8u16, __VA_ARGS__) |
#define | LD_SH4(...) LD_H4(v8i16, __VA_ARGS__) |
#define | LD_H6(RTYPE, psrc, stride, out0, out1, out2, out3, out4, out5) |
#define | LD_UH6(...) LD_H6(v8u16, __VA_ARGS__) |
#define | LD_SH6(...) LD_H6(v8i16, __VA_ARGS__) |
#define | LD_H8(RTYPE, psrc, stride,out0, out1, out2, out3, out4, out5, out6, out7) |
#define | LD_UH8(...) LD_H8(v8u16, __VA_ARGS__) |
#define | LD_SH8(...) LD_H8(v8i16, __VA_ARGS__) |
#define | LD_H16(RTYPE, psrc, stride,out0, out1, out2, out3, out4, out5, out6, out7,out8, out9, out10, out11, out12, out13, out14, out15) |
#define | LD_SH16(...) LD_H16(v8i16, __VA_ARGS__) |
#define | LD_SW2(psrc, stride, out0, out1) |
#define | ST_B2(RTYPE, in0, in1, pdst, stride) |
#define | ST_UB2(...) ST_B2(v16u8, __VA_ARGS__) |
#define | ST_SB2(...) ST_B2(v16i8, __VA_ARGS__) |
#define | ST_B4(RTYPE, in0, in1, in2, in3, pdst, stride) |
#define | ST_UB4(...) ST_B4(v16u8, __VA_ARGS__) |
#define | ST_SB4(...) ST_B4(v16i8, __VA_ARGS__) |
#define | ST_B8(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7,pdst, stride) |
#define | ST_UB8(...) ST_B8(v16u8, __VA_ARGS__) |
#define | ST_H2(RTYPE, in0, in1, pdst, stride) |
#define | ST_UH2(...) ST_H2(v8u16, __VA_ARGS__) |
#define | ST_SH2(...) ST_H2(v8i16, __VA_ARGS__) |
#define | ST_H4(RTYPE, in0, in1, in2, in3, pdst, stride) |
#define | ST_SH4(...) ST_H4(v8i16, __VA_ARGS__) |
#define | ST_H6(RTYPE, in0, in1, in2, in3, in4, in5, pdst, stride) |
#define | ST_SH6(...) ST_H6(v8i16, __VA_ARGS__) |
#define | ST_H8(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7, pdst, stride) |
#define | ST_SH8(...) ST_H8(v8i16, __VA_ARGS__) |
#define | ST_SW2(in0, in1, pdst, stride) |
#define | ST2x4_UB(in, stidx, pdst, stride) |
#define | ST4x2_UB(in, pdst, stride) |
#define | ST4x4_UB(in0, in1, idx0, idx1, idx2, idx3, pdst, stride) |
#define | ST4x8_UB(in0, in1, pdst, stride) |
#define | ST6x4_UB(in0, in1, pdst, stride) |
#define | ST8x1_UB(in, pdst) |
#define | ST8x2_UB(in, pdst, stride) |
#define | ST8x4_UB(in0, in1, pdst, stride) |
#define | ST8x8_UB(in0, in1, in2, in3, pdst, stride) |
#define | ST12x4_UB(in0, in1, in2, pdst, stride) |
#define | ST12x8_UB(in0, in1, in2, in3, in4, in5, in6, in7, pdst, stride) |
#define | SLDI_B2_0(RTYPE, in0, in1, out0, out1, slide_val) |
#define | SLDI_B2_0_UB(...) SLDI_B2_0(v16u8, __VA_ARGS__) |
#define | SLDI_B4_0(RTYPE, in0, in1, in2, in3,out0, out1, out2, out3, slide_val) |
#define | SLDI_B4_0_SB(...) SLDI_B4_0(v16i8, __VA_ARGS__) |
#define | SLDI_B2(RTYPE, in0_0, in0_1, in1_0, in1_1, out0, out1, slide_val) |
#define | SLDI_B2_UB(...) SLDI_B2(v16u8, __VA_ARGS__) |
#define | SLDI_B2_SB(...) SLDI_B2(v16i8, __VA_ARGS__) |
#define | SLDI_B2_SH(...) SLDI_B2(v8i16, __VA_ARGS__) |
#define | VSHF_B2(RTYPE, in0, in1, in2, in3, mask0, mask1, out0, out1) |
#define | VSHF_B2_UB(...) VSHF_B2(v16u8, __VA_ARGS__) |
#define | VSHF_B2_SB(...) VSHF_B2(v16i8, __VA_ARGS__) |
#define | VSHF_B2_UH(...) VSHF_B2(v8u16, __VA_ARGS__) |
#define | VSHF_B2_SH(...) VSHF_B2(v8i16, __VA_ARGS__) |
#define | VSHF_B3(RTYPE, in0, in1, in2, in3, in4, in5, mask0, mask1, mask2,out0, out1, out2) |
#define | VSHF_B3_SB(...) VSHF_B3(v16i8, __VA_ARGS__) |
#define | VSHF_B4(RTYPE, in0, in1, mask0, mask1, mask2, mask3,out0, out1, out2, out3) |
#define | VSHF_B4_SB(...) VSHF_B4(v16i8, __VA_ARGS__) |
#define | VSHF_W2(RTYPE, in0, in1, in2, in3, mask0, mask1, out0, out1) |
#define | VSHF_W2_SB(...) VSHF_W2(v16i8, __VA_ARGS__) |
#define | DOTP_SB2(RTYPE, mult0, mult1, cnst0, cnst1, out0, out1) |
#define | DOTP_SB2_SH(...) DOTP_SB2(v8i16, __VA_ARGS__) |
#define | DOTP_SB3(RTYPE, mult0, mult1, mult2, cnst0, cnst1, cnst2,out0, out1, out2) |
#define | DOTP_SB3_SH(...) DOTP_SB3(v8i16, __VA_ARGS__) |
#define | DOTP_SB4(RTYPE, mult0, mult1, mult2, mult3,cnst0, cnst1, cnst2, cnst3, out0, out1, out2, out3) |
#define | DOTP_SB4_SH(...) DOTP_SB4(v8i16, __VA_ARGS__) |
#define | DOTP_SH2(RTYPE, mult0, mult1, cnst0, cnst1, out0, out1) |
#define | DOTP_SH2_SW(...) DOTP_SH2(v4i32, __VA_ARGS__) |
#define | DOTP_SH4(RTYPE, mult0, mult1, mult2, mult3,cnst0, cnst1, cnst2, cnst3,out0, out1, out2, out3) |
#define | DOTP_SH4_SW(...) DOTP_SH4(v4i32, __VA_ARGS__) |
#define | DPADD_SB2(RTYPE, mult0, mult1, cnst0, cnst1, out0, out1) |
#define | DPADD_SB2_SH(...) DPADD_SB2(v8i16, __VA_ARGS__) |
#define | DPADD_SB4(RTYPE, mult0, mult1, mult2, mult3,cnst0, cnst1, cnst2, cnst3, out0, out1, out2, out3) |
#define | DPADD_SB4_SH(...) DPADD_SB4(v8i16, __VA_ARGS__) |
#define | DPADD_SH2(RTYPE, mult0, mult1, cnst0, cnst1, out0, out1) |
#define | DPADD_SH2_SW(...) DPADD_SH2(v4i32, __VA_ARGS__) |
#define | DPADD_SH4(RTYPE, mult0, mult1, mult2, mult3,cnst0, cnst1, cnst2, cnst3, out0, out1, out2, out3) |
#define | DPADD_SH4_SW(...) DPADD_SH4(v4i32, __VA_ARGS__) |
#define | CLIP_SH(in, min, max) |
#define | CLIP_SH_0_255(in) |
#define | CLIP_SH2_0_255(in0, in1) |
#define | CLIP_SH4_0_255(in0, in1, in2, in3) |
#define | CLIP_SW_0_255(in) |
#define | HSUB_UB2(RTYPE, in0, in1, out0, out1) |
#define | HSUB_UB2_UH(...) HSUB_UB2(v8u16, __VA_ARGS__) |
#define | HSUB_UB2_SH(...) HSUB_UB2(v8i16, __VA_ARGS__) |
#define | INSERT_W4(RTYPE, in0, in1, in2, in3, out) |
#define | INSERT_W4_UB(...) INSERT_W4(v16u8, __VA_ARGS__) |
#define | INSERT_W4_SB(...) INSERT_W4(v16i8, __VA_ARGS__) |
#define | INSERT_W4_SW(...) INSERT_W4(v4i32, __VA_ARGS__) |
#define | INSERT_D2(RTYPE, in0, in1, out) |
#define | INSERT_D2_UB(...) INSERT_D2(v16u8, __VA_ARGS__) |
#define | INSERT_D2_SB(...) INSERT_D2(v16i8, __VA_ARGS__) |
#define | INSERT_D2_SD(...) INSERT_D2(v2i64, __VA_ARGS__) |
#define | ILVEV_H2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | ILVEV_H2_UB(...) ILVEV_H2(v16u8, __VA_ARGS__) |
#define | ILVEV_W2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | ILVEV_W2_SB(...) ILVEV_W2(v16i8, __VA_ARGS__) |
#define | ILVEV_D2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | ILVEV_D2_UB(...) ILVEV_D2(v16u8, __VA_ARGS__) |
#define | ILVL_B2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | ILVL_B2_SB(...) ILVL_B2(v16i8, __VA_ARGS__) |
#define | ILVL_B2_SH(...) ILVL_B2(v8i16, __VA_ARGS__) |
#define | ILVL_B4(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7,out0, out1, out2, out3) |
#define | ILVL_B4_SB(...) ILVL_B4(v16i8, __VA_ARGS__) |
#define | ILVL_B4_UH(...) ILVL_B4(v8u16, __VA_ARGS__) |
#define | ILVL_B4_SH(...) ILVL_B4(v8i16, __VA_ARGS__) |
#define | ILVL_H2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | ILVL_H2_SH(...) ILVL_H2(v8i16, __VA_ARGS__) |
#define | ILVL_H2_SW(...) ILVL_H2(v4i32, __VA_ARGS__) |
#define | ILVL_H4(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7,out0, out1, out2, out3) |
#define | ILVL_H4_SH(...) ILVL_H4(v8i16, __VA_ARGS__) |
#define | ILVL_W2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | ILVL_W2_SB(...) ILVL_W2(v16i8, __VA_ARGS__) |
#define | ILVR_B2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | ILVR_B2_UB(...) ILVR_B2(v16u8, __VA_ARGS__) |
#define | ILVR_B2_SB(...) ILVR_B2(v16i8, __VA_ARGS__) |
#define | ILVR_B2_UH(...) ILVR_B2(v8u16, __VA_ARGS__) |
#define | ILVR_B2_SH(...) ILVR_B2(v8i16, __VA_ARGS__) |
#define | ILVR_B2_SW(...) ILVR_B2(v4i32, __VA_ARGS__) |
#define | ILVR_B3(RTYPE, in0, in1, in2, in3, in4, in5, out0, out1, out2) |
#define | ILVR_B3_UB(...) ILVR_B3(v16u8, __VA_ARGS__) |
#define | ILVR_B3_UH(...) ILVR_B3(v8u16, __VA_ARGS__) |
#define | ILVR_B3_SH(...) ILVR_B3(v8i16, __VA_ARGS__) |
#define | ILVR_B4(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7,out0, out1, out2, out3) |
#define | ILVR_B4_SB(...) ILVR_B4(v16i8, __VA_ARGS__) |
#define | ILVR_B4_UH(...) ILVR_B4(v8u16, __VA_ARGS__) |
#define | ILVR_B4_SH(...) ILVR_B4(v8i16, __VA_ARGS__) |
#define | ILVR_H2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | ILVR_H2_SH(...) ILVR_H2(v8i16, __VA_ARGS__) |
#define | ILVR_H2_SW(...) ILVR_H2(v4i32, __VA_ARGS__) |
#define | ILVR_H3(RTYPE, in0, in1, in2, in3, in4, in5, out0, out1, out2) |
#define | ILVR_H3_SH(...) ILVR_H3(v8i16, __VA_ARGS__) |
#define | ILVR_H4(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7,out0, out1, out2, out3) |
#define | ILVR_H4_SH(...) ILVR_H4(v8i16, __VA_ARGS__) |
#define | ILVR_W2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | ILVR_W2_UB(...) ILVR_W2(v16u8, __VA_ARGS__) |
#define | ILVR_W2_SB(...) ILVR_W2(v16i8, __VA_ARGS__) |
#define | ILVR_W4(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7,out0, out1, out2, out3) |
#define | ILVR_W4_SB(...) ILVR_W4(v16i8, __VA_ARGS__) |
#define | ILVR_D2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | ILVR_D2_SB(...) ILVR_D2(v16i8, __VA_ARGS__) |
#define | ILVR_D2_SH(...) ILVR_D2(v8i16, __VA_ARGS__) |
#define | ILVR_D3(RTYPE, in0, in1, in2, in3, in4, in5, out0, out1, out2) |
#define | ILVR_D3_SB(...) ILVR_D3(v16i8, __VA_ARGS__) |
#define | ILVR_D4(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7,out0, out1, out2, out3) |
#define | ILVR_D4_SB(...) ILVR_D4(v16i8, __VA_ARGS__) |
#define | ILVRL_B2(RTYPE, in0, in1, out0, out1) |
#define | ILVRL_B2_SB(...) ILVRL_B2(v16i8, __VA_ARGS__) |
#define | ILVRL_B2_SH(...) ILVRL_B2(v8i16, __VA_ARGS__) |
#define | ILVRL_H2(RTYPE, in0, in1, out0, out1) |
#define | ILVRL_H2_SB(...) ILVRL_H2(v16i8, __VA_ARGS__) |
#define | ILVRL_H2_SH(...) ILVRL_H2(v8i16, __VA_ARGS__) |
#define | ILVRL_H2_SW(...) ILVRL_H2(v4i32, __VA_ARGS__) |
#define | ILVRL_W2(RTYPE, in0, in1, out0, out1) |
#define | ILVRL_W2_UB(...) ILVRL_W2(v16u8, __VA_ARGS__) |
#define | ILVRL_W2_SH(...) ILVRL_W2(v8i16, __VA_ARGS__) |
#define | ILVRL_W2_SW(...) ILVRL_W2(v4i32, __VA_ARGS__) |
#define | MAXI_SH2(RTYPE, in0, in1, max_val) |
#define | MAXI_SH2_SH(...) MAXI_SH2(v8i16, __VA_ARGS__) |
#define | MAXI_SH4(RTYPE, in0, in1, in2, in3, max_val) |
#define | MAXI_SH4_UH(...) MAXI_SH4(v8u16, __VA_ARGS__) |
#define | SAT_UH2(RTYPE, in0, in1, sat_val) |
#define | SAT_UH2_UH(...) SAT_UH2(v8u16, __VA_ARGS__) |
#define | SAT_UH4(RTYPE, in0, in1, in2, in3, sat_val) |
#define | SAT_UH4_UH(...) SAT_UH4(v8u16, __VA_ARGS__) |
#define | SAT_SH2(RTYPE, in0, in1, sat_val) |
#define | SAT_SH2_SH(...) SAT_SH2(v8i16, __VA_ARGS__) |
#define | SAT_SH3(RTYPE, in0, in1, in2, sat_val) |
#define | SAT_SH3_SH(...) SAT_SH3(v8i16, __VA_ARGS__) |
#define | SAT_SH4(RTYPE, in0, in1, in2, in3, sat_val) |
#define | SAT_SH4_SH(...) SAT_SH4(v8i16, __VA_ARGS__) |
#define | SAT_SW2(RTYPE, in0, in1, sat_val) |
#define | SAT_SW2_SW(...) SAT_SW2(v4i32, __VA_ARGS__) |
#define | SAT_SW4(RTYPE, in0, in1, in2, in3, sat_val) |
#define | SAT_SW4_SW(...) SAT_SW4(v4i32, __VA_ARGS__) |
#define | SPLATI_H2(RTYPE, in, idx0, idx1, out0, out1) |
#define | SPLATI_H2_SB(...) SPLATI_H2(v16i8, __VA_ARGS__) |
#define | SPLATI_H2_SH(...) SPLATI_H2(v8i16, __VA_ARGS__) |
#define | SPLATI_H4(RTYPE, in, idx0, idx1, idx2, idx3,out0, out1, out2, out3) |
#define | SPLATI_H4_SB(...) SPLATI_H4(v16i8, __VA_ARGS__) |
#define | SPLATI_H4_SH(...) SPLATI_H4(v8i16, __VA_ARGS__) |
#define | SPLATI_W2(RTYPE, in, stidx, out0, out1) |
#define | SPLATI_W2_SH(...) SPLATI_W2(v8i16, __VA_ARGS__) |
#define | SPLATI_W2_SW(...) SPLATI_W2(v4i32, __VA_ARGS__) |
#define | SPLATI_W4(RTYPE, in, out0, out1, out2, out3) |
#define | SPLATI_W4_SH(...) SPLATI_W4(v8i16, __VA_ARGS__) |
#define | SPLATI_W4_SW(...) SPLATI_W4(v4i32, __VA_ARGS__) |
#define | PCKEV_B2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | PCKEV_B2_SB(...) PCKEV_B2(v16i8, __VA_ARGS__) |
#define | PCKEV_B2_UB(...) PCKEV_B2(v16u8, __VA_ARGS__) |
#define | PCKEV_B2_SH(...) PCKEV_B2(v8i16, __VA_ARGS__) |
#define | PCKEV_B2_SW(...) PCKEV_B2(v4i32, __VA_ARGS__) |
#define | PCKEV_B3(RTYPE, in0, in1, in2, in3, in4, in5, out0, out1, out2) |
#define | PCKEV_B3_UB(...) PCKEV_B3(v16u8, __VA_ARGS__) |
#define | PCKEV_B3_SB(...) PCKEV_B3(v16i8, __VA_ARGS__) |
#define | PCKEV_B4(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7,out0, out1, out2, out3) |
#define | PCKEV_B4_SB(...) PCKEV_B4(v16i8, __VA_ARGS__) |
#define | PCKEV_B4_UB(...) PCKEV_B4(v16u8, __VA_ARGS__) |
#define | PCKEV_B4_SH(...) PCKEV_B4(v8i16, __VA_ARGS__) |
#define | PCKEV_B4_SW(...) PCKEV_B4(v4i32, __VA_ARGS__) |
#define | PCKEV_H2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | PCKEV_H2_SH(...) PCKEV_H2(v8i16, __VA_ARGS__) |
#define | PCKEV_H2_SW(...) PCKEV_H2(v4i32, __VA_ARGS__) |
#define | PCKEV_H4(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7,out0, out1, out2, out3) |
#define | PCKEV_H4_SH(...) PCKEV_H4(v8i16, __VA_ARGS__) |
#define | PCKEV_H4_SW(...) PCKEV_H4(v4i32, __VA_ARGS__) |
#define | PCKEV_D2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | PCKEV_D2_UB(...) PCKEV_D2(v16u8, __VA_ARGS__) |
#define | PCKEV_D2_SB(...) PCKEV_D2(v16i8, __VA_ARGS__) |
#define | PCKEV_D2_SH(...) PCKEV_D2(v8i16, __VA_ARGS__) |
#define | PCKEV_D4(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7,out0, out1, out2, out3) |
#define | PCKEV_D4_UB(...) PCKEV_D4(v16u8, __VA_ARGS__) |
#define | XORI_B2_128(RTYPE, in0, in1) |
#define | XORI_B2_128_UB(...) XORI_B2_128(v16u8, __VA_ARGS__) |
#define | XORI_B2_128_SB(...) XORI_B2_128(v16i8, __VA_ARGS__) |
#define | XORI_B2_128_SH(...) XORI_B2_128(v8i16, __VA_ARGS__) |
#define | XORI_B3_128(RTYPE, in0, in1, in2) |
#define | XORI_B3_128_SB(...) XORI_B3_128(v16i8, __VA_ARGS__) |
#define | XORI_B4_128(RTYPE, in0, in1, in2, in3) |
#define | XORI_B4_128_UB(...) XORI_B4_128(v16u8, __VA_ARGS__) |
#define | XORI_B4_128_SB(...) XORI_B4_128(v16i8, __VA_ARGS__) |
#define | XORI_B4_128_SH(...) XORI_B4_128(v8i16, __VA_ARGS__) |
#define | XORI_B5_128(RTYPE, in0, in1, in2, in3, in4) |
#define | XORI_B5_128_SB(...) XORI_B5_128(v16i8, __VA_ARGS__) |
#define | XORI_B6_128(RTYPE, in0, in1, in2, in3, in4, in5) |
#define | XORI_B6_128_SB(...) XORI_B6_128(v16i8, __VA_ARGS__) |
#define | XORI_B7_128(RTYPE, in0, in1, in2, in3, in4, in5, in6) |
#define | XORI_B7_128_SB(...) XORI_B7_128(v16i8, __VA_ARGS__) |
#define | XORI_B8_128(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7) |
#define | XORI_B8_128_SB(...) XORI_B8_128(v16i8, __VA_ARGS__) |
#define | ADDS_SH2(RTYPE, in0, in1, in2, in3, out0, out1) |
#define | ADDS_SH2_SH(...) ADDS_SH2(v8i16, __VA_ARGS__) |
#define | ADDS_SH4(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7,out0, out1, out2, out3) |
#define | ADDS_SH4_UH(...) ADDS_SH4(v8u16, __VA_ARGS__) |
#define | ADDS_SH4_SH(...) ADDS_SH4(v8i16, __VA_ARGS__) |
#define | SLLI_4V(in0, in1, in2, in3, shift) |
#define | SRA_4V(in0, in1, in2, in3, shift) |
#define | SRL_H4(RTYPE, in0, in1, in2, in3, shift) |
#define | SRL_H4_UH(...) SRL_H4(v8u16, __VA_ARGS__) |
#define | SRAR_H2(RTYPE, in0, in1, shift) |
#define | SRAR_H2_UH(...) SRAR_H2(v8u16, __VA_ARGS__) |
#define | SRAR_H2_SH(...) SRAR_H2(v8i16, __VA_ARGS__) |
#define | SRAR_H3(RTYPE, in0, in1, in2, shift) |
#define | SRAR_H3_SH(...) SRAR_H3(v8i16, __VA_ARGS__) |
#define | SRAR_H4(RTYPE, in0, in1, in2, in3, shift) |
#define | SRAR_H4_UH(...) SRAR_H4(v8u16, __VA_ARGS__) |
#define | SRAR_H4_SH(...) SRAR_H4(v8i16, __VA_ARGS__) |
#define | SRAR_W2(RTYPE, in0, in1, shift) |
#define | SRAR_W2_SW(...) SRAR_W2(v4i32, __VA_ARGS__) |
#define | SRAR_W4(RTYPE, in0, in1, in2, in3, shift) |
#define | SRAR_W4_SW(...) SRAR_W4(v4i32, __VA_ARGS__) |
#define | SRARI_H2(RTYPE, in0, in1, shift) |
#define | SRARI_H2_UH(...) SRARI_H2(v8u16, __VA_ARGS__) |
#define | SRARI_H2_SH(...) SRARI_H2(v8i16, __VA_ARGS__) |
#define | SRARI_H4(RTYPE, in0, in1, in2, in3, shift) |
#define | SRARI_H4_UH(...) SRARI_H4(v8u16, __VA_ARGS__) |
#define | SRARI_H4_SH(...) SRARI_H4(v8i16, __VA_ARGS__) |
#define | SRARI_W2(RTYPE, in0, in1, shift) |
#define | SRARI_W2_SW(...) SRARI_W2(v4i32, __VA_ARGS__) |
#define | SRARI_W4(RTYPE, in0, in1, in2, in3, shift) |
#define | SRARI_W4_SH(...) SRARI_W4(v8i16, __VA_ARGS__) |
#define | SRARI_W4_SW(...) SRARI_W4(v4i32, __VA_ARGS__) |
#define | MUL2(in0, in1, in2, in3, out0, out1) |
#define | MUL4(in0, in1, in2, in3, in4, in5, in6, in7, out0, out1, out2, out3) |
#define | ADD2(in0, in1, in2, in3, out0, out1) |
#define | ADD4(in0, in1, in2, in3, in4, in5, in6, in7, out0, out1, out2, out3) |
#define | UNPCK_UB_SH(in, out0, out1) |
#define | UNPCK_SH_SW(in, out0, out1) |
#define | BUTTERFLY_4(in0, in1, in2, in3, out0, out1, out2, out3) |
#define | TRANSPOSE4x4_UB_UB(in0, in1, in2, in3, out0, out1, out2, out3) |
#define | TRANSPOSE8x4_UB(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7,out0, out1, out2, out3) |
#define | TRANSPOSE8x4_UB_UB(...) TRANSPOSE8x4_UB(v16u8, __VA_ARGS__) |
#define | TRANSPOSE16x8_UB_UB(in0, in1, in2, in3, in4, in5, in6, in7,in8, in9, in10, in11, in12, in13, in14, in15,out0, out1, out2, out3, out4, out5, out6, out7) |
#define | TRANSPOSE8x8_H(RTYPE, in0, in1, in2, in3, in4, in5, in6, in7,out0, out1, out2, out3, out4, out5, out6, out7) |
#define | TRANSPOSE8x8_UH_UH(...) TRANSPOSE8x8_H(v8u16, __VA_ARGS__) |
#define | TRANSPOSE8x8_SH_SH(...) TRANSPOSE8x8_H(v8i16, __VA_ARGS__) |
#define | TRANSPOSE4x4_SW_SW(in0, in1, in2, in3, out0, out1, out2, out3) |
#define | PCKEV_XORI128_UB(in0, in1) |
#define | PCKEV_ST4x4_UB(in0, in1, in2, in3, pdst, stride) |
#define LD_B | ( | RTYPE, | |
psrc | |||
) | *((RTYPE *)(psrc)) |
Definition at line 27 of file generic_macros_msa.h.
#define LD_UB | ( | ... | ) | LD_B(v16u8, __VA_ARGS__) |
Definition at line 28 of file generic_macros_msa.h.
Referenced by avc_loopfilter_luma_inter_edge_hor_msa(), avc_loopfilter_luma_intra_edge_hor_msa(), common_hz_8t_12w_msa(), common_hz_8t_16w_msa(), common_hz_8t_24w_msa(), common_hz_8t_32w_msa(), common_hz_8t_48w_msa(), common_hz_8t_4x16_msa(), common_hz_8t_4x4_msa(), common_hz_8t_4x8_msa(), common_hz_8t_64w_msa(), common_hz_8t_8x4_msa(), and common_hz_8t_8x8mult_msa().
#define LD_SB | ( | ... | ) | LD_B(v16i8, __VA_ARGS__) |
Definition at line 29 of file generic_macros_msa.h.
Referenced by common_hz_4t_12w_msa(), common_hz_4t_16w_msa(), common_hz_4t_24w_msa(), common_hz_4t_32w_msa(), common_hz_4t_4x16_msa(), common_hz_4t_4x2_msa(), common_hz_4t_4x4_msa(), common_hz_4t_4x8_msa(), common_hz_4t_6w_msa(), common_hz_4t_8x2mult_msa(), common_hz_4t_8x4mult_msa(), common_hz_8t_32w_msa(), common_hz_8t_48w_msa(), common_hz_8t_64w_msa(), common_vt_4t_4x4multiple_msa(), hevc_hz_4t_32w_msa(), hevc_hz_8t_32w_msa(), hevc_hz_8t_48w_msa(), hevc_hz_8t_64w_msa(), hevc_hz_bi_4t_32w_msa(), hevc_hz_bi_8t_32w_msa(), hevc_hz_bi_8t_64w_msa(), hevc_hz_biwgt_4t_32w_msa(), hevc_hz_biwgt_8t_32w_msa(), hevc_hz_biwgt_8t_48w_msa(), hevc_hz_biwgt_8t_64w_msa(), hevc_hz_uniwgt_4t_32w_msa(), hevc_hz_uniwgt_8t_32w_msa(), hevc_hz_uniwgt_8t_48w_msa(), and hevc_hz_uniwgt_8t_64w_msa().
#define LD_H | ( | RTYPE, | |
psrc | |||
) | *((RTYPE *)(psrc)) |
Definition at line 31 of file generic_macros_msa.h.
#define LD_UH | ( | ... | ) | LD_H(v8u16, __VA_ARGS__) |
Definition at line 32 of file generic_macros_msa.h.
#define LD_SH | ( | ... | ) | LD_H(v8i16, __VA_ARGS__) |
Definition at line 33 of file generic_macros_msa.h.
Referenced by common_hz_4t_12w_msa(), common_hz_4t_16w_msa(), common_hz_4t_24w_msa(), common_hz_4t_32w_msa(), common_hz_4t_4x16_msa(), common_hz_4t_4x2_msa(), common_hz_4t_4x4_msa(), common_hz_4t_4x8_msa(), common_hz_4t_6w_msa(), common_hz_4t_8x2mult_msa(), common_hz_4t_8x4mult_msa(), common_hz_8t_12w_msa(), common_hz_8t_16w_msa(), common_hz_8t_24w_msa(), common_hz_8t_32w_msa(), common_hz_8t_48w_msa(), common_hz_8t_4x16_msa(), common_hz_8t_4x4_msa(), common_hz_8t_4x8_msa(), common_hz_8t_64w_msa(), common_hz_8t_8x4_msa(), common_hz_8t_8x8mult_msa(), common_vt_4t_12w_msa(), common_vt_4t_16w_msa(), common_vt_4t_24w_msa(), common_vt_4t_32w_mult_msa(), common_vt_4t_4x2_msa(), common_vt_4t_4x4multiple_msa(), common_vt_4t_6w_msa(), common_vt_4t_8x2_msa(), common_vt_4t_8x4mult_msa(), common_vt_4t_8x6_msa(), common_vt_8t_12w_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), common_vt_8t_4w_msa(), common_vt_8t_8w_msa(), hevc_hv_4t_4multx8mult_msa(), hevc_hv_4t_4x2_msa(), hevc_hv_4t_4x4_msa(), hevc_hv_4t_6w_msa(), hevc_hv_4t_8multx4mult_msa(), hevc_hv_4t_8x2_msa(), hevc_hv_4t_8x6_msa(), hevc_hv_8t_4w_msa(), hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_bi_4t_4x2_msa(), hevc_hv_bi_4t_4x4_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_bi_4t_8multx4mult_msa(), hevc_hv_bi_4t_8x2_msa(), hevc_hv_bi_4t_8x6_msa(), hevc_hv_bi_8t_4w_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hv_biwgt_4t_6w_msa(), hevc_hv_biwgt_4t_8multx4mult_msa(), hevc_hv_biwgt_4t_8x2_msa(), hevc_hv_biwgt_4t_8x6_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uni_4t_4x2_msa(), hevc_hv_uni_4t_4x4_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), hevc_hv_uni_4t_8x2_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_hv_uni_8t_4w_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_4t_4multx8mult_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_4t_4x4_msa(), hevc_hv_uniwgt_4t_6w_msa(), hevc_hv_uniwgt_4t_8multx4mult_msa(), hevc_hv_uniwgt_4t_8x2_msa(), hevc_hv_uniwgt_4t_8x6_msa(), hevc_hv_uniwgt_8t_4w_msa(), hevc_hv_uniwgt_8t_8multx2mult_msa(), hevc_hz_4t_12w_msa(), hevc_hz_4t_16w_msa(), hevc_hz_4t_24w_msa(), hevc_hz_4t_32w_msa(), hevc_hz_4t_4x2_msa(), hevc_hz_4t_4x4_msa(), hevc_hz_4t_4x8multiple_msa(), hevc_hz_4t_6w_msa(), hevc_hz_4t_8x2multiple_msa(), hevc_hz_4t_8x4multiple_msa(), hevc_hz_8t_16w_msa(), hevc_hz_8t_24w_msa(), hevc_hz_8t_32w_msa(), hevc_hz_8t_48w_msa(), hevc_hz_8t_4w_msa(), hevc_hz_8t_64w_msa(), hevc_hz_8t_8w_msa(), hevc_hz_bi_4t_12w_msa(), hevc_hz_bi_4t_16w_msa(), hevc_hz_bi_4t_24w_msa(), hevc_hz_bi_4t_32w_msa(), hevc_hz_bi_4t_4x2_msa(), hevc_hz_bi_4t_4x4_msa(), hevc_hz_bi_4t_4x8multiple_msa(), hevc_hz_bi_4t_6w_msa(), hevc_hz_bi_4t_8x2_msa(), hevc_hz_bi_4t_8x4multiple_msa(), hevc_hz_bi_4t_8x6_msa(), hevc_hz_bi_8t_16w_msa(), hevc_hz_bi_8t_24w_msa(), hevc_hz_bi_8t_32w_msa(), hevc_hz_bi_8t_48w_msa(), hevc_hz_bi_8t_4w_msa(), hevc_hz_bi_8t_64w_msa(), hevc_hz_bi_8t_8w_msa(), hevc_hz_biwgt_4t_12w_msa(), hevc_hz_biwgt_4t_16w_msa(), hevc_hz_biwgt_4t_24w_msa(), hevc_hz_biwgt_4t_32w_msa(), hevc_hz_biwgt_4t_4x2_msa(), hevc_hz_biwgt_4t_4x4_msa(), hevc_hz_biwgt_4t_4x8multiple_msa(), hevc_hz_biwgt_4t_6w_msa(), hevc_hz_biwgt_4t_8x2_msa(), hevc_hz_biwgt_4t_8x4multiple_msa(), hevc_hz_biwgt_4t_8x6_msa(), hevc_hz_biwgt_8t_16w_msa(), hevc_hz_biwgt_8t_24w_msa(), hevc_hz_biwgt_8t_32w_msa(), hevc_hz_biwgt_8t_48w_msa(), hevc_hz_biwgt_8t_4w_msa(), hevc_hz_biwgt_8t_64w_msa(), hevc_hz_biwgt_8t_8w_msa(), hevc_hz_uniwgt_4t_12w_msa(), hevc_hz_uniwgt_4t_16w_msa(), hevc_hz_uniwgt_4t_24w_msa(), hevc_hz_uniwgt_4t_32w_msa(), hevc_hz_uniwgt_4t_4x2_msa(), hevc_hz_uniwgt_4t_4x4_msa(), hevc_hz_uniwgt_4t_4x8multiple_msa(), hevc_hz_uniwgt_4t_6w_msa(), hevc_hz_uniwgt_4t_8x2_msa(), hevc_hz_uniwgt_4t_8x4multiple_msa(), hevc_hz_uniwgt_4t_8x6_msa(), hevc_hz_uniwgt_8t_16w_msa(), hevc_hz_uniwgt_8t_24w_msa(), hevc_hz_uniwgt_8t_32w_msa(), hevc_hz_uniwgt_8t_48w_msa(), hevc_hz_uniwgt_8t_4w_msa(), hevc_hz_uniwgt_8t_64w_msa(), hevc_hz_uniwgt_8t_8w_msa(), hevc_idct_8x32_column_msa(), hevc_vt_4t_12w_msa(), hevc_vt_4t_16w_msa(), hevc_vt_4t_24w_msa(), hevc_vt_4t_32w_msa(), hevc_vt_4t_4x2_msa(), hevc_vt_4t_4x4_msa(), hevc_vt_4t_4x8multiple_msa(), hevc_vt_4t_6w_msa(), hevc_vt_4t_8x2_msa(), hevc_vt_4t_8x4multiple_msa(), hevc_vt_4t_8x6_msa(), hevc_vt_8t_12w_msa(), hevc_vt_8t_16multx4mult_msa(), hevc_vt_8t_4w_msa(), hevc_vt_8t_8w_msa(), hevc_vt_bi_4t_12w_msa(), hevc_vt_bi_4t_16w_msa(), hevc_vt_bi_4t_24w_msa(), hevc_vt_bi_4t_32w_msa(), hevc_vt_bi_4t_4x2_msa(), hevc_vt_bi_4t_4x4_msa(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_4t_6w_msa(), hevc_vt_bi_4t_8x2_msa(), hevc_vt_bi_4t_8x4multiple_msa(), hevc_vt_bi_4t_8x6_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_16multx2mult_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_bi_8t_8w_msa(), hevc_vt_biwgt_4t_12w_msa(), hevc_vt_biwgt_4t_16w_msa(), hevc_vt_biwgt_4t_24w_msa(), hevc_vt_biwgt_4t_32w_msa(), hevc_vt_biwgt_4t_4x2_msa(), hevc_vt_biwgt_4t_4x4_msa(), hevc_vt_biwgt_4t_4x8multiple_msa(), hevc_vt_biwgt_4t_6w_msa(), hevc_vt_biwgt_4t_8x2_msa(), hevc_vt_biwgt_4t_8x4multiple_msa(), hevc_vt_biwgt_4t_8x6_msa(), hevc_vt_biwgt_8t_12w_msa(), hevc_vt_biwgt_8t_16multx2mult_msa(), hevc_vt_biwgt_8t_4w_msa(), hevc_vt_biwgt_8t_8w_msa(), hevc_vt_uniwgt_4t_12w_msa(), hevc_vt_uniwgt_4t_16w_msa(), hevc_vt_uniwgt_4t_24w_msa(), hevc_vt_uniwgt_4t_32w_msa(), hevc_vt_uniwgt_4t_4x2_msa(), hevc_vt_uniwgt_4t_4x4_msa(), hevc_vt_uniwgt_4t_4x8multiple_msa(), hevc_vt_uniwgt_4t_6w_msa(), hevc_vt_uniwgt_4t_8x2_msa(), hevc_vt_uniwgt_4t_8x4multiple_msa(), hevc_vt_uniwgt_4t_8x6_msa(), hevc_vt_uniwgt_8t_12w_msa(), hevc_vt_uniwgt_8t_16multx2mult_msa(), hevc_vt_uniwgt_8t_4w_msa(), and hevc_vt_uniwgt_8t_8w_msa().
#define LD_W | ( | RTYPE, | |
psrc | |||
) | *((RTYPE *)(psrc)) |
Definition at line 35 of file generic_macros_msa.h.
#define LD_UW | ( | ... | ) | LD_W(v4u32, __VA_ARGS__) |
Definition at line 36 of file generic_macros_msa.h.
#define LD_SW | ( | ... | ) | LD_W(v4i32, __VA_ARGS__) |
Definition at line 37 of file generic_macros_msa.h.
Definition at line 39 of file generic_macros_msa.h.
#define ST_UB | ( | ... | ) | ST_B(v16u8, __VA_ARGS__) |
Definition at line 40 of file generic_macros_msa.h.
Referenced by avc_loopfilter_cb_or_cr_inter_edge_hor_msa(), avc_loopfilter_cb_or_cr_intra_edge_hor_msa(), avc_loopfilter_luma_inter_edge_hor_msa(), avc_loopfilter_luma_intra_edge_hor_msa(), common_hz_4t_16w_msa(), common_hz_4t_24w_msa(), common_hz_4t_32w_msa(), common_hz_8t_16w_msa(), common_hz_8t_24w_msa(), common_hz_8t_32w_msa(), common_hz_8t_48w_msa(), common_hz_8t_64w_msa(), common_vt_4t_24w_msa(), and common_vt_4t_32w_mult_msa().
#define ST_SB | ( | ... | ) | ST_B(v16i8, __VA_ARGS__) |
Definition at line 41 of file generic_macros_msa.h.
Referenced by hevc_hz_bi_8t_24w_msa(), and hevc_hz_bi_8t_48w_msa().
Definition at line 43 of file generic_macros_msa.h.
#define ST_UH | ( | ... | ) | ST_H(v8u16, __VA_ARGS__) |
Definition at line 44 of file generic_macros_msa.h.
#define ST_SH | ( | ... | ) | ST_H(v8i16, __VA_ARGS__) |
Definition at line 45 of file generic_macros_msa.h.
Referenced by hevc_hz_8t_24w_msa(), hevc_hz_8t_64w_msa(), hevc_idct_8x32_column_msa(), and hevc_vt_4t_24w_msa().
Definition at line 47 of file generic_macros_msa.h.
#define ST_UW | ( | ... | ) | ST_W(v4u32, __VA_ARGS__) |
Definition at line 48 of file generic_macros_msa.h.
#define ST_SW | ( | ... | ) | ST_W(v4i32, __VA_ARGS__) |
Definition at line 49 of file generic_macros_msa.h.
Referenced by hevc_hv_8t_8multx2mult_msa(), hevc_hz_biwgt_8t_24w_msa(), hevc_hz_biwgt_8t_48w_msa(), and hevc_hz_uniwgt_8t_48w_msa().
#define LW | ( | psrc | ) |
Definition at line 139 of file generic_macros_msa.h.
Referenced by avc_biwgt_4x2_msa(), avc_h_loop_filter_luma_mbaff_msa(), avc_wgt_4x2_msa(), and hevc_idct_8x32_column_msa().
#define LD | ( | psrc | ) |
Definition at line 170 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_intra_msa(), and avc_h_loop_filter_luma_mbaff_msa().
#define SH | ( | val, | |
pdst | |||
) |
Definition at line 187 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_chroma422_mbaff_msa(), avc_h_loop_filter_luma_mbaff_intra_msa(), avc_loopfilter_luma_inter_edge_ver_msa(), and yuv2gbrp_full_X_c().
#define SW | ( | val, | |
pdst | |||
) |
Definition at line 200 of file generic_macros_msa.h.
Referenced by avc_biwgt_4x2_msa(), avc_h_loop_filter_luma_mbaff_intra_msa(), avc_h_loop_filter_luma_mbaff_msa(), avc_loopfilter_luma_inter_edge_ver_msa(), avc_wgt_4x2_msa(), common_vt_8t_12w_msa(), evolve(), hevc_hv_4t_6w_msa(), hevc_hz_4t_6w_msa(), and hevc_vt_4t_6w_msa().
#define SD | ( | val, | |
pdst | |||
) |
Definition at line 213 of file generic_macros_msa.h.
#define LW4 | ( | psrc, | |
stride, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 235 of file generic_macros_msa.h.
Referenced by avc_biwgt_4x4multiple_msa(), avc_wgt_4x4multiple_msa(), and hevc_addblk_4x4_msa().
#define LD2 | ( | psrc, | |
stride, | |||
out0, | |||
out1 | |||
) |
Definition at line 250 of file generic_macros_msa.h.
#define LD4 | ( | psrc, | |
stride, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 255 of file generic_macros_msa.h.
Referenced by hevc_addblk_8x8_msa().
#define SW4 | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
pdst, | |||
stride | |||
) |
Definition at line 268 of file generic_macros_msa.h.
#define SD4 | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
pdst, | |||
stride | |||
) |
#define LD_B2 | ( | RTYPE, | |
psrc, | |||
stride, | |||
out0, | |||
out1 | |||
) |
Definition at line 299 of file generic_macros_msa.h.
#define LD_UB2 | ( | ... | ) | LD_B2(v16u8, __VA_ARGS__) |
Definition at line 304 of file generic_macros_msa.h.
Referenced by copy_width8_msa().
#define LD_SB2 | ( | ... | ) | LD_B2(v16i8, __VA_ARGS__) |
Definition at line 305 of file generic_macros_msa.h.
Referenced by common_hz_4t_4x2_msa(), common_hz_4t_8x2mult_msa(), common_hz_8t_16w_msa(), common_hz_8t_24w_msa(), common_vt_4t_24w_msa(), common_vt_4t_32w_mult_msa(), common_vt_4t_4x2_msa(), common_vt_8t_12w_msa(), hevc_bi_copy_4w_msa(), hevc_bi_copy_8w_msa(), hevc_biwgt_copy_4w_msa(), hevc_biwgt_copy_8w_msa(), hevc_copy_4w_msa(), hevc_copy_8w_msa(), hevc_hv_4t_4x2_msa(), hevc_hv_4t_8x2_msa(), hevc_hv_4t_8x6_msa(), hevc_hv_8t_4w_msa(), hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_4t_4x2_msa(), hevc_hv_bi_4t_8x2_msa(), hevc_hv_bi_4t_8x6_msa(), hevc_hv_bi_8t_4w_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_4t_8x2_msa(), hevc_hv_biwgt_4t_8x6_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_4t_4x2_msa(), hevc_hv_uni_4t_8x2_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_hv_uni_8t_4w_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_4t_8x2_msa(), hevc_hv_uniwgt_4t_8x6_msa(), hevc_hv_uniwgt_8t_4w_msa(), hevc_hv_uniwgt_8t_8multx2mult_msa(), hevc_hz_4t_32w_msa(), hevc_hz_4t_4x2_msa(), hevc_hz_4t_8x2multiple_msa(), hevc_hz_8t_24w_msa(), hevc_hz_8t_32w_msa(), hevc_hz_bi_4t_32w_msa(), hevc_hz_bi_4t_4x2_msa(), hevc_hz_bi_4t_8x2_msa(), hevc_hz_bi_8t_16w_msa(), hevc_hz_bi_8t_24w_msa(), hevc_hz_bi_8t_32w_msa(), hevc_hz_bi_8t_48w_msa(), hevc_hz_bi_8t_64w_msa(), hevc_hz_biwgt_4t_24w_msa(), hevc_hz_biwgt_4t_32w_msa(), hevc_hz_biwgt_4t_4x2_msa(), hevc_hz_biwgt_4t_8x2_msa(), hevc_hz_biwgt_8t_16w_msa(), hevc_hz_biwgt_8t_24w_msa(), hevc_hz_biwgt_8t_32w_msa(), hevc_hz_biwgt_8t_64w_msa(), hevc_hz_uniwgt_4t_24w_msa(), hevc_hz_uniwgt_4t_32w_msa(), hevc_hz_uniwgt_4t_4x2_msa(), hevc_hz_uniwgt_4t_8x2_msa(), hevc_hz_uniwgt_8t_16w_msa(), hevc_hz_uniwgt_8t_24w_msa(), hevc_hz_uniwgt_8t_32w_msa(), hevc_hz_uniwgt_8t_64w_msa(), hevc_uniwgt_copy_4w_msa(), hevc_uniwgt_copy_8w_msa(), hevc_vt_4t_12w_msa(), hevc_vt_4t_16w_msa(), hevc_vt_4t_24w_msa(), hevc_vt_4t_32w_msa(), hevc_vt_4t_4x8multiple_msa(), hevc_vt_4t_6w_msa(), hevc_vt_4t_8x2_msa(), hevc_vt_4t_8x4multiple_msa(), hevc_vt_4t_8x6_msa(), hevc_vt_bi_4t_12w_msa(), hevc_vt_bi_4t_16w_msa(), hevc_vt_bi_4t_24w_msa(), hevc_vt_bi_4t_32w_msa(), hevc_vt_bi_4t_4x2_msa(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_4t_6w_msa(), hevc_vt_bi_4t_8x2_msa(), hevc_vt_bi_4t_8x4multiple_msa(), hevc_vt_bi_8t_16multx2mult_msa(), hevc_vt_biwgt_4t_12w_msa(), hevc_vt_biwgt_4t_16w_msa(), hevc_vt_biwgt_4t_24w_msa(), hevc_vt_biwgt_4t_32w_msa(), hevc_vt_biwgt_4t_4x2_msa(), hevc_vt_biwgt_4t_4x8multiple_msa(), hevc_vt_biwgt_4t_6w_msa(), hevc_vt_biwgt_4t_8x2_msa(), hevc_vt_biwgt_4t_8x4multiple_msa(), hevc_vt_biwgt_8t_12w_msa(), hevc_vt_biwgt_8t_16multx2mult_msa(), hevc_vt_uniwgt_4t_12w_msa(), hevc_vt_uniwgt_4t_16w_msa(), hevc_vt_uniwgt_4t_24w_msa(), hevc_vt_uniwgt_4t_32w_msa(), hevc_vt_uniwgt_4t_4x2_msa(), hevc_vt_uniwgt_4t_4x8multiple_msa(), hevc_vt_uniwgt_4t_6w_msa(), hevc_vt_uniwgt_4t_8x2_msa(), hevc_vt_uniwgt_4t_8x4multiple_msa(), and hevc_vt_uniwgt_8t_16multx2mult_msa().
#define LD_B3 | ( | RTYPE, | |
psrc, | |||
stride, | |||
out0, | |||
out1, | |||
out2 | |||
) |
Definition at line 307 of file generic_macros_msa.h.
#define LD_UB3 | ( | ... | ) | LD_B3(v16u8, __VA_ARGS__) |
Definition at line 312 of file generic_macros_msa.h.
Referenced by common_vt_4t_6w_msa().
#define LD_SB3 | ( | ... | ) | LD_B3(v16i8, __VA_ARGS__) |
Definition at line 313 of file generic_macros_msa.h.
Referenced by common_hz_8t_48w_msa(), common_vt_4t_12w_msa(), common_vt_4t_16w_msa(), common_vt_4t_24w_msa(), common_vt_4t_32w_mult_msa(), common_vt_4t_4x2_msa(), common_vt_4t_4x4multiple_msa(), common_vt_4t_8x4mult_msa(), common_vt_4t_8x6_msa(), hevc_hv_4t_4multx8mult_msa(), hevc_hv_4t_4x2_msa(), hevc_hv_4t_4x4_msa(), hevc_hv_4t_6w_msa(), hevc_hv_4t_8multx4mult_msa(), hevc_hv_4t_8x2_msa(), hevc_hv_4t_8x6_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_bi_4t_4x2_msa(), hevc_hv_bi_4t_4x4_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_bi_4t_8multx4mult_msa(), hevc_hv_bi_4t_8x2_msa(), hevc_hv_bi_4t_8x6_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hv_biwgt_4t_6w_msa(), hevc_hv_biwgt_4t_8multx4mult_msa(), hevc_hv_biwgt_4t_8x2_msa(), hevc_hv_biwgt_4t_8x6_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uni_4t_4x2_msa(), hevc_hv_uni_4t_4x4_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), hevc_hv_uni_4t_8x2_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_hv_uniwgt_4t_4multx8mult_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_4t_4x4_msa(), hevc_hv_uniwgt_4t_6w_msa(), hevc_hv_uniwgt_4t_8multx4mult_msa(), hevc_hv_uniwgt_4t_8x2_msa(), hevc_hv_uniwgt_4t_8x6_msa(), hevc_hz_8t_48w_msa(), hevc_hz_biwgt_8t_48w_msa(), hevc_hz_uniwgt_8t_48w_msa(), hevc_vt_4t_12w_msa(), hevc_vt_4t_16w_msa(), hevc_vt_4t_24w_msa(), hevc_vt_4t_32w_msa(), hevc_vt_4t_4x8multiple_msa(), hevc_vt_4t_6w_msa(), hevc_vt_4t_8x2_msa(), hevc_vt_4t_8x4multiple_msa(), hevc_vt_4t_8x6_msa(), hevc_vt_bi_4t_12w_msa(), hevc_vt_bi_4t_16w_msa(), hevc_vt_bi_4t_24w_msa(), hevc_vt_bi_4t_32w_msa(), hevc_vt_bi_4t_4x2_msa(), hevc_vt_bi_4t_4x4_msa(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_4t_6w_msa(), hevc_vt_bi_4t_8x2_msa(), hevc_vt_bi_4t_8x4multiple_msa(), hevc_vt_bi_4t_8x6_msa(), hevc_vt_biwgt_4t_12w_msa(), hevc_vt_biwgt_4t_16w_msa(), hevc_vt_biwgt_4t_24w_msa(), hevc_vt_biwgt_4t_32w_msa(), hevc_vt_biwgt_4t_4x2_msa(), hevc_vt_biwgt_4t_4x4_msa(), hevc_vt_biwgt_4t_4x8multiple_msa(), hevc_vt_biwgt_4t_6w_msa(), hevc_vt_biwgt_4t_8x2_msa(), hevc_vt_biwgt_4t_8x4multiple_msa(), hevc_vt_biwgt_4t_8x6_msa(), hevc_vt_uniwgt_4t_12w_msa(), hevc_vt_uniwgt_4t_16w_msa(), hevc_vt_uniwgt_4t_24w_msa(), hevc_vt_uniwgt_4t_32w_msa(), hevc_vt_uniwgt_4t_4x2_msa(), hevc_vt_uniwgt_4t_4x4_msa(), hevc_vt_uniwgt_4t_4x8multiple_msa(), hevc_vt_uniwgt_4t_6w_msa(), hevc_vt_uniwgt_4t_8x2_msa(), hevc_vt_uniwgt_4t_8x4multiple_msa(), and hevc_vt_uniwgt_4t_8x6_msa().
#define LD_B4 | ( | RTYPE, | |
psrc, | |||
stride, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 315 of file generic_macros_msa.h.
#define LD_UB4 | ( | ... | ) | LD_B4(v16u8, __VA_ARGS__) |
Definition at line 320 of file generic_macros_msa.h.
Referenced by avc_loopfilter_cb_or_cr_inter_edge_hor_msa(), avc_loopfilter_cb_or_cr_intra_edge_hor_msa(), avc_loopfilter_luma_intra_edge_hor_msa(), avc_wgt_16width_msa(), avc_wgt_8width_msa(), common_vt_4t_6w_msa(), copy_width16_msa(), copy_width32_msa(), copy_width8_msa(), hevc_addblk_16x16_msa(), and hevc_addblk_32x32_msa().
#define LD_SB4 | ( | ... | ) | LD_B4(v16i8, __VA_ARGS__) |
Definition at line 321 of file generic_macros_msa.h.
Referenced by avc_biwgt_16width_msa(), avc_biwgt_8width_msa(), common_hz_4t_12w_msa(), common_hz_4t_16w_msa(), common_hz_4t_24w_msa(), common_hz_4t_4x4_msa(), common_hz_4t_4x8_msa(), common_hz_4t_6w_msa(), common_hz_4t_8x4mult_msa(), common_hz_8t_12w_msa(), common_hz_8t_4x16_msa(), common_hz_8t_4x4_msa(), common_hz_8t_4x8_msa(), common_hz_8t_8x4_msa(), common_hz_8t_8x8mult_msa(), common_vt_4t_12w_msa(), common_vt_4t_16w_msa(), common_vt_4t_8x4mult_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), common_vt_8t_4w_msa(), common_vt_8t_8w_msa(), hevc_bi_copy_12w_msa(), hevc_bi_copy_16multx4mult_msa(), hevc_bi_copy_4w_msa(), hevc_bi_copy_8w_msa(), hevc_biwgt_copy_12w_msa(), hevc_biwgt_copy_16multx4mult_msa(), hevc_biwgt_copy_4w_msa(), hevc_biwgt_copy_6w_msa(), hevc_biwgt_copy_8w_msa(), hevc_copy_16w_msa(), hevc_copy_4w_msa(), hevc_copy_8w_msa(), hevc_hv_4t_4x4_msa(), hevc_hv_4t_6w_msa(), hevc_hv_4t_8multx4mult_msa(), hevc_hv_bi_4t_4x4_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_bi_4t_8multx4mult_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hv_biwgt_4t_6w_msa(), hevc_hv_biwgt_4t_8multx4mult_msa(), hevc_hv_uni_4t_4x4_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), hevc_hv_uniwgt_4t_4x4_msa(), hevc_hv_uniwgt_4t_6w_msa(), hevc_hv_uniwgt_4t_8multx4mult_msa(), hevc_hz_4t_12w_msa(), hevc_hz_4t_16w_msa(), hevc_hz_4t_24w_msa(), hevc_hz_4t_4x4_msa(), hevc_hz_4t_6w_msa(), hevc_hz_4t_8x4multiple_msa(), hevc_hz_8t_16w_msa(), hevc_hz_8t_64w_msa(), hevc_hz_8t_8w_msa(), hevc_hz_bi_4t_12w_msa(), hevc_hz_bi_4t_16w_msa(), hevc_hz_bi_4t_24w_msa(), hevc_hz_bi_4t_4x4_msa(), hevc_hz_bi_4t_6w_msa(), hevc_hz_bi_4t_8x4multiple_msa(), hevc_hz_bi_8t_8w_msa(), hevc_hz_biwgt_4t_12w_msa(), hevc_hz_biwgt_4t_16w_msa(), hevc_hz_biwgt_4t_4x4_msa(), hevc_hz_biwgt_4t_6w_msa(), hevc_hz_biwgt_4t_8x4multiple_msa(), hevc_hz_biwgt_8t_4w_msa(), hevc_hz_biwgt_8t_8w_msa(), hevc_hz_uniwgt_4t_12w_msa(), hevc_hz_uniwgt_4t_16w_msa(), hevc_hz_uniwgt_4t_4x4_msa(), hevc_hz_uniwgt_4t_6w_msa(), hevc_hz_uniwgt_4t_8x4multiple_msa(), hevc_hz_uniwgt_8t_8w_msa(), hevc_uniwgt_copy_12w_msa(), hevc_uniwgt_copy_16multx4mult_msa(), hevc_uniwgt_copy_4w_msa(), hevc_uniwgt_copy_8w_msa(), hevc_vt_8t_12w_msa(), hevc_vt_8t_16multx4mult_msa(), hevc_vt_8t_8w_msa(), hevc_vt_bi_4t_4x4_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_8w_msa(), hevc_vt_biwgt_4t_4x4_msa(), hevc_vt_biwgt_8t_8w_msa(), hevc_vt_uniwgt_4t_4x4_msa(), hevc_vt_uniwgt_8t_12w_msa(), and hevc_vt_uniwgt_8t_8w_msa().
#define LD_B5 | ( | RTYPE, | |
psrc, | |||
stride, | |||
out0, | |||
out1, | |||
out2, | |||
out3, | |||
out4 | |||
) |
Definition at line 323 of file generic_macros_msa.h.
#define LD_UB5 | ( | ... | ) | LD_B5(v16u8, __VA_ARGS__) |
Definition at line 328 of file generic_macros_msa.h.
Referenced by avc_loopfilter_luma_inter_edge_hor_msa().
#define LD_SB5 | ( | ... | ) | LD_B5(v16i8, __VA_ARGS__) |
Definition at line 329 of file generic_macros_msa.h.
Referenced by common_vt_4t_8x2_msa(), and hevc_vt_4t_4x2_msa().
#define LD_B6 | ( | RTYPE, | |
psrc, | |||
stride, | |||
out0, | |||
out1, | |||
out2, | |||
out3, | |||
out4, | |||
out5 | |||
) |
Definition at line 331 of file generic_macros_msa.h.
#define LD_SB6 | ( | ... | ) | LD_B6(v16i8, __VA_ARGS__) |
Definition at line 336 of file generic_macros_msa.h.
Referenced by hevc_bi_copy_8w_msa(), hevc_biwgt_copy_8w_msa(), hevc_copy_8w_msa(), hevc_hz_bi_4t_8x6_msa(), hevc_hz_biwgt_4t_8x6_msa(), hevc_hz_uniwgt_4t_8x6_msa(), hevc_uniwgt_copy_8w_msa(), hevc_vt_4t_4x8multiple_msa(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_4t_8x6_msa(), hevc_vt_biwgt_4t_4x8multiple_msa(), hevc_vt_biwgt_4t_8x6_msa(), hevc_vt_uniwgt_4t_4x8multiple_msa(), and hevc_vt_uniwgt_4t_8x6_msa().
#define LD_B7 | ( | RTYPE, | |
psrc, | |||
stride, | |||
out0, | |||
out1, | |||
out2, | |||
out3, | |||
out4, | |||
out5, | |||
out6 | |||
) |
Definition at line 338 of file generic_macros_msa.h.
#define LD_SB7 | ( | ... | ) | LD_B7(v16i8, __VA_ARGS__) |
Definition at line 344 of file generic_macros_msa.h.
Referenced by common_vt_8t_12w_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), common_vt_8t_4w_msa(), common_vt_8t_8w_msa(), hevc_hv_8t_4w_msa(), hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_8t_4w_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_8t_4w_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_8t_4w_msa(), hevc_hv_uniwgt_8t_8multx2mult_msa(), hevc_vt_4t_4x4_msa(), hevc_vt_8t_12w_msa(), hevc_vt_8t_16multx4mult_msa(), hevc_vt_8t_4w_msa(), hevc_vt_8t_8w_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_16multx2mult_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_bi_8t_8w_msa(), hevc_vt_biwgt_8t_12w_msa(), hevc_vt_biwgt_8t_16multx2mult_msa(), hevc_vt_biwgt_8t_4w_msa(), hevc_vt_biwgt_8t_8w_msa(), hevc_vt_uniwgt_8t_12w_msa(), hevc_vt_uniwgt_8t_16multx2mult_msa(), hevc_vt_uniwgt_8t_4w_msa(), and hevc_vt_uniwgt_8t_8w_msa().
#define LD_B8 | ( | RTYPE, | |
psrc, | |||
stride, | |||
out0, | |||
out1, | |||
out2, | |||
out3, | |||
out4, | |||
out5, | |||
out6, | |||
out7 | |||
) |
Definition at line 346 of file generic_macros_msa.h.
#define LD_UB8 | ( | ... | ) | LD_B8(v16u8, __VA_ARGS__) |
Definition at line 352 of file generic_macros_msa.h.
Referenced by avc_loopfilter_cb_or_cr_inter_edge_ver_msa(), avc_loopfilter_cb_or_cr_intra_edge_ver_msa(), avc_loopfilter_luma_inter_edge_ver_msa(), avc_loopfilter_luma_intra_edge_ver_msa(), copy_16multx8mult_msa(), copy_width12_msa(), copy_width16_msa(), and copy_width8_msa().
#define LD_SB8 | ( | ... | ) | LD_B8(v16i8, __VA_ARGS__) |
Definition at line 353 of file generic_macros_msa.h.
Referenced by common_hz_4t_4x16_msa(), hevc_bi_copy_4w_msa(), hevc_bi_copy_6w_msa(), hevc_biwgt_copy_4w_msa(), hevc_copy_12w_msa(), hevc_copy_16multx8mult_msa(), hevc_copy_16w_msa(), hevc_copy_4w_msa(), hevc_copy_6w_msa(), hevc_copy_8w_msa(), hevc_hv_4t_4multx8mult_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uniwgt_4t_4multx8mult_msa(), hevc_hz_4t_4x8multiple_msa(), hevc_hz_8t_4w_msa(), hevc_hz_bi_4t_4x8multiple_msa(), hevc_hz_bi_8t_4w_msa(), hevc_hz_biwgt_4t_4x8multiple_msa(), hevc_hz_uniwgt_4t_4x8multiple_msa(), hevc_hz_uniwgt_8t_4w_msa(), hevc_uniwgt_copy_4w_msa(), hevc_uniwgt_copy_6w_msa(), hevc_vt_8t_4w_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_biwgt_8t_4w_msa(), and hevc_vt_uniwgt_8t_4w_msa().
#define LD_H2 | ( | RTYPE, | |
psrc, | |||
stride, | |||
out0, | |||
out1 | |||
) |
Definition at line 362 of file generic_macros_msa.h.
#define LD_UH2 | ( | ... | ) | LD_H2(v8u16, __VA_ARGS__) |
Definition at line 367 of file generic_macros_msa.h.
#define LD_SH2 | ( | ... | ) | LD_H2(v8i16, __VA_ARGS__) |
Definition at line 368 of file generic_macros_msa.h.
Referenced by hevc_addblk_4x4_msa(), hevc_bi_copy_4w_msa(), hevc_bi_copy_8w_msa(), hevc_biwgt_copy_4w_msa(), hevc_biwgt_copy_8w_msa(), hevc_hv_bi_4t_4x2_msa(), hevc_hv_bi_4t_8x2_msa(), hevc_hv_bi_8t_4w_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_4t_8x2_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hz_bi_4t_4x2_msa(), hevc_hz_bi_4t_8x2_msa(), hevc_hz_bi_4t_8x6_msa(), hevc_hz_bi_8t_16w_msa(), hevc_hz_bi_8t_24w_msa(), hevc_hz_bi_8t_48w_msa(), hevc_hz_biwgt_4t_24w_msa(), hevc_hz_biwgt_4t_4x2_msa(), hevc_hz_biwgt_4t_8x2_msa(), hevc_hz_biwgt_4t_8x6_msa(), hevc_hz_biwgt_8t_16w_msa(), hevc_hz_biwgt_8t_24w_msa(), hevc_hz_biwgt_8t_48w_msa(), hevc_idct_4x4_msa(), hevc_idct_8x32_column_msa(), hevc_idct_luma_4x4_msa(), hevc_vt_bi_4t_16w_msa(), hevc_vt_bi_4t_24w_msa(), hevc_vt_bi_4t_32w_msa(), hevc_vt_bi_4t_4x2_msa(), hevc_vt_bi_4t_8x2_msa(), hevc_vt_bi_8t_16multx2mult_msa(), hevc_vt_biwgt_4t_16w_msa(), hevc_vt_biwgt_4t_24w_msa(), hevc_vt_biwgt_4t_32w_msa(), hevc_vt_biwgt_4t_4x2_msa(), hevc_vt_biwgt_4t_8x2_msa(), hevc_vt_biwgt_8t_12w_msa(), and hevc_vt_biwgt_8t_16multx2mult_msa().
#define LD_H4 | ( | RTYPE, | |
psrc, | |||
stride, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 370 of file generic_macros_msa.h.
#define LD_UH4 | ( | ... | ) | LD_H4(v8u16, __VA_ARGS__) |
Definition at line 375 of file generic_macros_msa.h.
#define LD_SH4 | ( | ... | ) | LD_H4(v8i16, __VA_ARGS__) |
Definition at line 376 of file generic_macros_msa.h.
Referenced by hevc_addblk_16x16_msa(), hevc_addblk_32x32_msa(), hevc_bi_copy_12w_msa(), hevc_bi_copy_16multx4mult_msa(), hevc_bi_copy_4w_msa(), hevc_bi_copy_8w_msa(), hevc_biwgt_copy_12w_msa(), hevc_biwgt_copy_16multx4mult_msa(), hevc_biwgt_copy_4w_msa(), hevc_biwgt_copy_6w_msa(), hevc_biwgt_copy_8w_msa(), hevc_hv_bi_4t_4x4_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_bi_4t_8multx4mult_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hv_biwgt_4t_6w_msa(), hevc_hv_biwgt_4t_8multx4mult_msa(), hevc_hz_bi_4t_12w_msa(), hevc_hz_bi_4t_16w_msa(), hevc_hz_bi_4t_24w_msa(), hevc_hz_bi_4t_32w_msa(), hevc_hz_bi_4t_4x4_msa(), hevc_hz_bi_4t_4x8multiple_msa(), hevc_hz_bi_4t_6w_msa(), hevc_hz_bi_4t_8x4multiple_msa(), hevc_hz_bi_4t_8x6_msa(), hevc_hz_bi_8t_32w_msa(), hevc_hz_bi_8t_64w_msa(), hevc_hz_bi_8t_8w_msa(), hevc_hz_biwgt_4t_12w_msa(), hevc_hz_biwgt_4t_16w_msa(), hevc_hz_biwgt_4t_32w_msa(), hevc_hz_biwgt_4t_4x4_msa(), hevc_hz_biwgt_4t_4x8multiple_msa(), hevc_hz_biwgt_4t_6w_msa(), hevc_hz_biwgt_4t_8x4multiple_msa(), hevc_hz_biwgt_4t_8x6_msa(), hevc_hz_biwgt_8t_32w_msa(), hevc_hz_biwgt_8t_4w_msa(), hevc_hz_biwgt_8t_64w_msa(), hevc_hz_biwgt_8t_8w_msa(), hevc_idct_8x32_column_msa(), hevc_vt_bi_4t_12w_msa(), hevc_vt_bi_4t_4x4_msa(), hevc_vt_bi_4t_6w_msa(), hevc_vt_bi_4t_8x4multiple_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_8w_msa(), hevc_vt_biwgt_4t_12w_msa(), hevc_vt_biwgt_4t_4x4_msa(), hevc_vt_biwgt_4t_6w_msa(), hevc_vt_biwgt_4t_8x4multiple_msa(), and hevc_vt_biwgt_8t_8w_msa().
#define LD_H6 | ( | RTYPE, | |
psrc, | |||
stride, | |||
out0, | |||
out1, | |||
out2, | |||
out3, | |||
out4, | |||
out5 | |||
) |
Definition at line 378 of file generic_macros_msa.h.
#define LD_UH6 | ( | ... | ) | LD_H6(v8u16, __VA_ARGS__) |
Definition at line 383 of file generic_macros_msa.h.
#define LD_SH6 | ( | ... | ) | LD_H6(v8i16, __VA_ARGS__) |
Definition at line 384 of file generic_macros_msa.h.
Referenced by hevc_bi_copy_8w_msa(), hevc_biwgt_copy_8w_msa(), hevc_hv_bi_4t_8x6_msa(), hevc_hv_biwgt_4t_8x6_msa(), hevc_vt_bi_4t_8x6_msa(), and hevc_vt_biwgt_4t_8x6_msa().
#define LD_H8 | ( | RTYPE, | |
psrc, | |||
stride, | |||
out0, | |||
out1, | |||
out2, | |||
out3, | |||
out4, | |||
out5, | |||
out6, | |||
out7 | |||
) |
Definition at line 386 of file generic_macros_msa.h.
#define LD_UH8 | ( | ... | ) | LD_H8(v8u16, __VA_ARGS__) |
Definition at line 392 of file generic_macros_msa.h.
#define LD_SH8 | ( | ... | ) | LD_H8(v8i16, __VA_ARGS__) |
Definition at line 393 of file generic_macros_msa.h.
Referenced by hevc_addblk_8x8_msa(), hevc_bi_copy_4w_msa(), hevc_bi_copy_6w_msa(), hevc_biwgt_copy_4w_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hz_bi_8t_4w_msa(), hevc_idct_16x16_msa(), hevc_idct_8x32_column_msa(), hevc_idct_8x8_msa(), hevc_idct_transpose_32x8_to_8x32(), hevc_idct_transpose_8x32_to_32x8(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_biwgt_4t_4x8multiple_msa(), and hevc_vt_biwgt_8t_4w_msa().
#define LD_H16 | ( | RTYPE, | |
psrc, | |||
stride, | |||
out0, | |||
out1, | |||
out2, | |||
out3, | |||
out4, | |||
out5, | |||
out6, | |||
out7, | |||
out8, | |||
out9, | |||
out10, | |||
out11, | |||
out12, | |||
out13, | |||
out14, | |||
out15 | |||
) |
Definition at line 395 of file generic_macros_msa.h.
#define LD_SH16 | ( | ... | ) | LD_H16(v8i16, __VA_ARGS__) |
Definition at line 404 of file generic_macros_msa.h.
Referenced by hevc_idct_16x16_msa().
#define LD_SW2 | ( | psrc, | |
stride, | |||
out0, | |||
out1 | |||
) |
Definition at line 412 of file generic_macros_msa.h.
Referenced by hevc_idct_8x32_column_msa().
#define ST_B2 | ( | RTYPE, | |
in0, | |||
in1, | |||
pdst, | |||
stride | |||
) |
Definition at line 424 of file generic_macros_msa.h.
#define ST_UB2 | ( | ... | ) | ST_B2(v16u8, __VA_ARGS__) |
Definition at line 429 of file generic_macros_msa.h.
#define ST_SB2 | ( | ... | ) | ST_B2(v16i8, __VA_ARGS__) |
Definition at line 430 of file generic_macros_msa.h.
Referenced by hevc_hz_bi_8t_32w_msa(), and hevc_hz_bi_8t_64w_msa().
#define ST_B4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
pdst, | |||
stride | |||
) |
Definition at line 432 of file generic_macros_msa.h.
#define ST_UB4 | ( | ... | ) | ST_B4(v16u8, __VA_ARGS__) |
Definition at line 437 of file generic_macros_msa.h.
Referenced by avc_wgt_16width_msa(), common_vt_4t_16w_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), copy_width16_msa(), copy_width32_msa(), hevc_addblk_16x16_msa(), and hevc_addblk_32x32_msa().
#define ST_SB4 | ( | ... | ) | ST_B4(v16i8, __VA_ARGS__) |
Definition at line 438 of file generic_macros_msa.h.
Referenced by avc_biwgt_16width_msa().
#define ST_B8 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
pdst, | |||
stride | |||
) |
Definition at line 440 of file generic_macros_msa.h.
#define ST_UB8 | ( | ... | ) | ST_B8(v16u8, __VA_ARGS__) |
Definition at line 446 of file generic_macros_msa.h.
Referenced by copy_16multx8mult_msa(), and copy_width16_msa().
#define ST_H2 | ( | RTYPE, | |
in0, | |||
in1, | |||
pdst, | |||
stride | |||
) |
Definition at line 454 of file generic_macros_msa.h.
#define ST_UH2 | ( | ... | ) | ST_H2(v8u16, __VA_ARGS__) |
Definition at line 459 of file generic_macros_msa.h.
#define ST_SH2 | ( | ... | ) | ST_H2(v8i16, __VA_ARGS__) |
Definition at line 460 of file generic_macros_msa.h.
Referenced by hevc_bi_copy_16multx4mult_msa(), hevc_copy_8w_msa(), hevc_hz_4t_24w_msa(), hevc_hz_4t_8x2multiple_msa(), hevc_hz_8t_24w_msa(), hevc_hz_bi_4t_32w_msa(), hevc_hz_bi_8t_16w_msa(), hevc_idct_4x4_msa(), hevc_idct_dc_4x4_msa(), hevc_idct_luma_4x4_msa(), hevc_vt_4t_16w_msa(), hevc_vt_4t_24w_msa(), hevc_vt_4t_8x2_msa(), hevc_vt_4t_8x4multiple_msa(), hevc_vt_4t_8x6_msa(), hevc_vt_bi_4t_16w_msa(), hevc_vt_bi_4t_24w_msa(), hevc_vt_bi_4t_32w_msa(), and hevc_vt_bi_8t_16multx2mult_msa().
#define ST_H4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
pdst, | |||
stride | |||
) |
Definition at line 462 of file generic_macros_msa.h.
#define ST_SH4 | ( | ... | ) | ST_H4(v8i16, __VA_ARGS__) |
Definition at line 467 of file generic_macros_msa.h.
Referenced by hevc_copy_12w_msa(), hevc_copy_16multx8mult_msa(), hevc_copy_16w_msa(), hevc_copy_8w_msa(), hevc_hz_4t_12w_msa(), hevc_hz_4t_16w_msa(), hevc_hz_4t_24w_msa(), hevc_hz_4t_32w_msa(), hevc_hz_4t_8x4multiple_msa(), hevc_hz_8t_16w_msa(), hevc_hz_8t_32w_msa(), hevc_hz_8t_8w_msa(), hevc_hz_bi_4t_16w_msa(), hevc_hz_bi_4t_24w_msa(), hevc_vt_4t_12w_msa(), hevc_vt_4t_32w_msa(), hevc_vt_8t_12w_msa(), hevc_vt_8t_16multx4mult_msa(), and hevc_vt_8t_8w_msa().
#define ST_H6 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
pdst, | |||
stride | |||
) |
Definition at line 469 of file generic_macros_msa.h.
#define ST_SH6 | ( | ... | ) | ST_H6(v8i16, __VA_ARGS__) |
Definition at line 474 of file generic_macros_msa.h.
Referenced by hevc_copy_8w_msa(), and hevc_hz_8t_48w_msa().
#define ST_H8 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
pdst, | |||
stride | |||
) |
Definition at line 476 of file generic_macros_msa.h.
#define ST_SH8 | ( | ... | ) | ST_H8(v8i16, __VA_ARGS__) |
Definition at line 481 of file generic_macros_msa.h.
Referenced by hevc_copy_8w_msa(), hevc_idct_16x16_msa(), hevc_idct_8x8_msa(), hevc_idct_dc_16x16_msa(), hevc_idct_dc_32x32_msa(), hevc_idct_dc_8x8_msa(), hevc_idct_transpose_32x8_to_8x32(), and hevc_idct_transpose_8x32_to_32x8().
#define ST_SW2 | ( | in0, | |
in1, | |||
pdst, | |||
stride | |||
) |
Definition at line 490 of file generic_macros_msa.h.
Referenced by hevc_biwgt_copy_16multx4mult_msa(), hevc_hv_4t_8multx4mult_msa(), hevc_hv_4t_8x2_msa(), hevc_hv_4t_8x6_msa(), hevc_hz_biwgt_4t_16w_msa(), hevc_hz_biwgt_4t_24w_msa(), hevc_hz_biwgt_4t_32w_msa(), hevc_hz_biwgt_8t_16w_msa(), hevc_hz_biwgt_8t_32w_msa(), hevc_hz_biwgt_8t_64w_msa(), hevc_hz_uniwgt_4t_16w_msa(), hevc_hz_uniwgt_4t_24w_msa(), hevc_hz_uniwgt_4t_32w_msa(), hevc_hz_uniwgt_8t_16w_msa(), hevc_hz_uniwgt_8t_24w_msa(), hevc_hz_uniwgt_8t_32w_msa(), hevc_hz_uniwgt_8t_48w_msa(), hevc_hz_uniwgt_8t_64w_msa(), hevc_idct_8x32_column_msa(), hevc_uniwgt_copy_16multx4mult_msa(), hevc_vt_biwgt_4t_16w_msa(), hevc_vt_biwgt_4t_24w_msa(), hevc_vt_biwgt_4t_32w_msa(), hevc_vt_biwgt_8t_16multx2mult_msa(), hevc_vt_uniwgt_4t_16w_msa(), hevc_vt_uniwgt_4t_24w_msa(), hevc_vt_uniwgt_4t_32w_msa(), and hevc_vt_uniwgt_8t_16multx2mult_msa().
Definition at line 508 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_chroma422_msa(), avc_loopfilter_cb_or_cr_inter_edge_ver_msa(), avc_loopfilter_cb_or_cr_intra_edge_ver_msa(), and avc_loopfilter_luma_intra_edge_ver_msa().
Definition at line 532 of file generic_macros_msa.h.
Referenced by common_hz_4t_4x2_msa(), common_vt_4t_4x2_msa(), hevc_bi_copy_4w_msa(), hevc_biwgt_copy_4w_msa(), hevc_hv_bi_4t_4x2_msa(), hevc_hv_bi_8t_4w_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_uni_4t_4x2_msa(), hevc_hv_uni_8t_4w_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_8t_4w_msa(), hevc_hz_bi_4t_4x2_msa(), hevc_hz_biwgt_4t_4x2_msa(), hevc_hz_uniwgt_4t_4x2_msa(), hevc_uniwgt_copy_4w_msa(), hevc_vt_bi_4t_4x2_msa(), hevc_vt_biwgt_4t_4x2_msa(), hevc_vt_biwgt_8t_12w_msa(), and hevc_vt_uniwgt_4t_4x2_msa().
#define ST4x4_UB | ( | in0, | |
in1, | |||
idx0, | |||
idx1, | |||
idx2, | |||
idx3, | |||
pdst, | |||
stride | |||
) |
Definition at line 556 of file generic_macros_msa.h.
Referenced by avc_loopfilter_luma_intra_edge_ver_msa(), common_hz_4t_12w_msa(), common_hz_4t_4x16_msa(), common_hz_4t_4x4_msa(), common_hz_4t_4x8_msa(), common_hz_8t_12w_msa(), common_hz_8t_4x16_msa(), common_hz_8t_4x4_msa(), common_hz_8t_4x8_msa(), common_vt_4t_12w_msa(), common_vt_4t_4x4multiple_msa(), common_vt_8t_4w_msa(), hevc_addblk_4x4_msa(), hevc_bi_copy_4w_msa(), hevc_biwgt_copy_4w_msa(), hevc_hv_bi_4t_4x4_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hv_uni_4t_4x4_msa(), hevc_hv_uniwgt_4t_4multx8mult_msa(), hevc_hv_uniwgt_4t_4x4_msa(), hevc_hz_bi_4t_4x4_msa(), hevc_hz_biwgt_4t_4x4_msa(), hevc_hz_biwgt_8t_4w_msa(), hevc_hz_uniwgt_4t_4x4_msa(), hevc_uniwgt_copy_4w_msa(), hevc_vt_bi_4t_4x4_msa(), hevc_vt_biwgt_4t_4x4_msa(), and hevc_vt_uniwgt_4t_4x4_msa().
#define ST4x8_UB | ( | in0, | |
in1, | |||
pdst, | |||
stride | |||
) |
Definition at line 568 of file generic_macros_msa.h.
Referenced by hevc_bi_copy_4w_msa(), hevc_biwgt_copy_4w_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hz_bi_4t_4x8multiple_msa(), hevc_hz_bi_8t_4w_msa(), hevc_hz_biwgt_4t_4x8multiple_msa(), hevc_hz_uniwgt_4t_4x8multiple_msa(), hevc_hz_uniwgt_8t_4w_msa(), hevc_uniwgt_copy_4w_msa(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_biwgt_4t_4x8multiple_msa(), hevc_vt_biwgt_8t_4w_msa(), hevc_vt_uniwgt_4t_4x8multiple_msa(), and hevc_vt_uniwgt_8t_4w_msa().
#define ST6x4_UB | ( | in0, | |
in1, | |||
pdst, | |||
stride | |||
) |
Definition at line 589 of file generic_macros_msa.h.
Referenced by common_hz_4t_6w_msa(), common_vt_4t_6w_msa(), hevc_bi_copy_6w_msa(), hevc_biwgt_copy_6w_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_biwgt_4t_6w_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uniwgt_4t_6w_msa(), hevc_hz_bi_4t_6w_msa(), hevc_hz_biwgt_4t_6w_msa(), hevc_hz_uniwgt_4t_6w_msa(), hevc_uniwgt_copy_6w_msa(), hevc_vt_bi_4t_6w_msa(), hevc_vt_biwgt_4t_6w_msa(), and hevc_vt_uniwgt_4t_6w_msa().
#define ST8x1_UB | ( | in, | |
pdst | |||
) |
Definition at line 623 of file generic_macros_msa.h.
Referenced by common_vt_4t_24w_msa().
Definition at line 637 of file generic_macros_msa.h.
Referenced by common_hz_4t_8x2mult_msa(), common_hz_8t_24w_msa(), common_vt_4t_8x2_msa(), hevc_bi_copy_8w_msa(), hevc_biwgt_copy_8w_msa(), hevc_copy_4w_msa(), hevc_hv_4t_4x2_msa(), hevc_hv_8t_4w_msa(), hevc_hv_bi_4t_8x2_msa(), hevc_hv_bi_4t_8x6_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_4t_8x2_msa(), hevc_hv_biwgt_4t_8x6_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_4t_8x2_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_4t_8x2_msa(), hevc_hv_uniwgt_4t_8x6_msa(), hevc_hv_uniwgt_8t_8multx2mult_msa(), hevc_hz_4t_4x2_msa(), hevc_hz_bi_4t_8x2_msa(), hevc_hz_bi_4t_8x6_msa(), hevc_hz_biwgt_4t_24w_msa(), hevc_hz_biwgt_4t_8x2_msa(), hevc_hz_biwgt_4t_8x6_msa(), hevc_hz_uniwgt_4t_24w_msa(), hevc_hz_uniwgt_4t_8x2_msa(), hevc_hz_uniwgt_4t_8x6_msa(), hevc_hz_uniwgt_8t_24w_msa(), hevc_uniwgt_copy_8w_msa(), hevc_vt_4t_4x2_msa(), hevc_vt_bi_4t_24w_msa(), hevc_vt_bi_4t_8x2_msa(), hevc_vt_bi_4t_8x6_msa(), hevc_vt_biwgt_4t_24w_msa(), hevc_vt_biwgt_4t_8x2_msa(), hevc_vt_biwgt_4t_8x6_msa(), hevc_vt_biwgt_8t_12w_msa(), hevc_vt_uniwgt_4t_24w_msa(), hevc_vt_uniwgt_4t_8x2_msa(), and hevc_vt_uniwgt_4t_8x6_msa().
#define ST8x4_UB | ( | in0, | |
in1, | |||
pdst, | |||
stride | |||
) |
Definition at line 661 of file generic_macros_msa.h.
Referenced by avc_biwgt_8width_msa(), avc_wgt_8width_msa(), common_hz_4t_12w_msa(), common_hz_4t_24w_msa(), common_hz_4t_8x4mult_msa(), common_hz_8t_12w_msa(), common_hz_8t_8x4_msa(), common_hz_8t_8x8mult_msa(), common_vt_4t_12w_msa(), common_vt_4t_8x4mult_msa(), common_vt_8t_8w_msa(), hevc_addblk_8x8_msa(), hevc_bi_copy_8w_msa(), hevc_biwgt_copy_8w_msa(), hevc_copy_12w_msa(), hevc_copy_4w_msa(), hevc_hv_4t_4x4_msa(), hevc_hv_bi_4t_8multx4mult_msa(), hevc_hv_bi_4t_8x6_msa(), hevc_hv_biwgt_4t_8multx4mult_msa(), hevc_hv_biwgt_4t_8x6_msa(), hevc_hv_uni_4t_8w_mult_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_hv_uniwgt_4t_8multx4mult_msa(), hevc_hv_uniwgt_4t_8x6_msa(), hevc_hz_4t_12w_msa(), hevc_hz_4t_4x4_msa(), hevc_hz_bi_4t_24w_msa(), hevc_hz_bi_4t_8x4multiple_msa(), hevc_hz_bi_4t_8x6_msa(), hevc_hz_bi_8t_8w_msa(), hevc_hz_biwgt_4t_8x4multiple_msa(), hevc_hz_biwgt_4t_8x6_msa(), hevc_hz_biwgt_8t_8w_msa(), hevc_hz_uniwgt_4t_8x4multiple_msa(), hevc_hz_uniwgt_4t_8x6_msa(), hevc_hz_uniwgt_8t_8w_msa(), hevc_uniwgt_copy_8w_msa(), hevc_vt_4t_12w_msa(), hevc_vt_4t_4x4_msa(), hevc_vt_8t_12w_msa(), hevc_vt_bi_4t_8x4multiple_msa(), hevc_vt_bi_4t_8x6_msa(), hevc_vt_bi_8t_8w_msa(), hevc_vt_biwgt_4t_8x4multiple_msa(), hevc_vt_biwgt_4t_8x6_msa(), hevc_vt_biwgt_8t_8w_msa(), hevc_vt_uniwgt_4t_8x4multiple_msa(), hevc_vt_uniwgt_4t_8x6_msa(), and hevc_vt_uniwgt_8t_8w_msa().
#define ST8x8_UB | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
pdst, | |||
stride | |||
) |
Definition at line 673 of file generic_macros_msa.h.
Referenced by hevc_copy_4w_msa(), hevc_hv_4t_4multx8mult_msa(), hevc_hz_4t_4x8multiple_msa(), hevc_hz_8t_4w_msa(), hevc_vt_4t_4x8multiple_msa(), and hevc_vt_8t_4w_msa().
#define ST12x4_UB | ( | in0, | |
in1, | |||
in2, | |||
pdst, | |||
stride | |||
) |
Definition at line 680 of file generic_macros_msa.h.
Referenced by hevc_bi_copy_12w_msa(), hevc_biwgt_copy_12w_msa(), hevc_hz_bi_4t_12w_msa(), hevc_hz_biwgt_4t_12w_msa(), hevc_hz_uniwgt_4t_12w_msa(), hevc_uniwgt_copy_12w_msa(), hevc_vt_bi_4t_12w_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_biwgt_4t_12w_msa(), hevc_vt_uniwgt_4t_12w_msa(), and hevc_vt_uniwgt_8t_12w_msa().
#define ST12x8_UB | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
pdst, | |||
stride | |||
) |
Definition at line 699 of file generic_macros_msa.h.
Referenced by copy_width12_msa(), and hevc_copy_6w_msa().
#define SLDI_B2_0 | ( | RTYPE, | |
in0, | |||
in1, | |||
out0, | |||
out1, | |||
slide_val | |||
) |
Definition at line 757 of file generic_macros_msa.h.
#define SLDI_B2_0_UB | ( | ... | ) | SLDI_B2_0(v16u8, __VA_ARGS__) |
Definition at line 763 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_intra_msa().
#define SLDI_B4_0 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1, | |||
out2, | |||
out3, | |||
slide_val | |||
) |
Definition at line 765 of file generic_macros_msa.h.
#define SLDI_B4_0_SB | ( | ... | ) | SLDI_B4_0(v16i8, __VA_ARGS__) |
Definition at line 771 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_intra_msa().
#define SLDI_B2 | ( | RTYPE, | |
in0_0, | |||
in0_1, | |||
in1_0, | |||
in1_1, | |||
out0, | |||
out1, | |||
slide_val | |||
) |
Definition at line 780 of file generic_macros_msa.h.
#define SLDI_B2_UB | ( | ... | ) | SLDI_B2(v16u8, __VA_ARGS__) |
Definition at line 785 of file generic_macros_msa.h.
#define SLDI_B2_SB | ( | ... | ) | SLDI_B2(v16i8, __VA_ARGS__) |
Definition at line 786 of file generic_macros_msa.h.
Referenced by common_hz_4t_32w_msa().
#define SLDI_B2_SH | ( | ... | ) | SLDI_B2(v8i16, __VA_ARGS__) |
Definition at line 787 of file generic_macros_msa.h.
#define VSHF_B2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
mask0, | |||
mask1, | |||
out0, | |||
out1 | |||
) |
Definition at line 799 of file generic_macros_msa.h.
#define VSHF_B2_UB | ( | ... | ) | VSHF_B2(v16u8, __VA_ARGS__) |
Definition at line 804 of file generic_macros_msa.h.
#define VSHF_B2_SB | ( | ... | ) | VSHF_B2(v16i8, __VA_ARGS__) |
Definition at line 805 of file generic_macros_msa.h.
Referenced by common_hz_4t_12w_msa(), common_hz_4t_24w_msa(), common_hz_4t_4x2_msa(), common_hz_8t_24w_msa(), hevc_hv_4t_4multx8mult_msa(), hevc_hv_4t_4x2_msa(), hevc_hv_4t_4x4_msa(), hevc_hv_4t_6w_msa(), hevc_hv_4t_8multx4mult_msa(), hevc_hv_4t_8x2_msa(), hevc_hv_4t_8x6_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_bi_4t_4x2_msa(), hevc_hv_bi_4t_4x4_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_bi_4t_8multx4mult_msa(), hevc_hv_bi_4t_8x2_msa(), hevc_hv_bi_4t_8x6_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hv_biwgt_4t_6w_msa(), hevc_hv_biwgt_4t_8multx4mult_msa(), hevc_hv_biwgt_4t_8x2_msa(), hevc_hv_biwgt_4t_8x6_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uni_4t_4x2_msa(), hevc_hv_uni_4t_4x4_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), hevc_hv_uni_4t_8x2_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_hv_uniwgt_4t_4multx8mult_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_4t_4x4_msa(), hevc_hv_uniwgt_4t_6w_msa(), hevc_hv_uniwgt_4t_8multx4mult_msa(), hevc_hv_uniwgt_4t_8x2_msa(), hevc_hv_uniwgt_4t_8x6_msa(), hevc_hz_4t_12w_msa(), hevc_hz_4t_16w_msa(), hevc_hz_4t_24w_msa(), hevc_hz_4t_32w_msa(), hevc_hz_4t_4x2_msa(), hevc_hz_4t_4x4_msa(), hevc_hz_4t_4x8multiple_msa(), hevc_hz_4t_6w_msa(), hevc_hz_4t_8x2multiple_msa(), hevc_hz_4t_8x4multiple_msa(), hevc_hz_bi_4t_12w_msa(), hevc_hz_bi_4t_16w_msa(), hevc_hz_bi_4t_24w_msa(), hevc_hz_bi_4t_32w_msa(), hevc_hz_bi_4t_4x2_msa(), hevc_hz_bi_4t_4x4_msa(), hevc_hz_bi_4t_4x8multiple_msa(), hevc_hz_bi_4t_6w_msa(), hevc_hz_bi_4t_8x2_msa(), hevc_hz_bi_4t_8x4multiple_msa(), hevc_hz_bi_4t_8x6_msa(), hevc_hz_biwgt_4t_12w_msa(), hevc_hz_biwgt_4t_16w_msa(), hevc_hz_biwgt_4t_24w_msa(), hevc_hz_biwgt_4t_32w_msa(), hevc_hz_biwgt_4t_4x2_msa(), hevc_hz_biwgt_4t_4x4_msa(), hevc_hz_biwgt_4t_4x8multiple_msa(), hevc_hz_biwgt_4t_6w_msa(), hevc_hz_biwgt_4t_8x2_msa(), hevc_hz_biwgt_4t_8x4multiple_msa(), hevc_hz_biwgt_4t_8x6_msa(), hevc_hz_uniwgt_4t_12w_msa(), hevc_hz_uniwgt_4t_16w_msa(), hevc_hz_uniwgt_4t_24w_msa(), hevc_hz_uniwgt_4t_32w_msa(), hevc_hz_uniwgt_4t_4x2_msa(), hevc_hz_uniwgt_4t_4x4_msa(), hevc_hz_uniwgt_4t_4x8multiple_msa(), hevc_hz_uniwgt_4t_6w_msa(), hevc_hz_uniwgt_4t_8x2_msa(), hevc_hz_uniwgt_4t_8x4multiple_msa(), and hevc_hz_uniwgt_4t_8x6_msa().
#define VSHF_B2_UH | ( | ... | ) | VSHF_B2(v8u16, __VA_ARGS__) |
Definition at line 806 of file generic_macros_msa.h.
#define VSHF_B2_SH | ( | ... | ) | VSHF_B2(v8i16, __VA_ARGS__) |
Definition at line 807 of file generic_macros_msa.h.
Referenced by common_hz_4t_8x2mult_msa().
#define VSHF_B3 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
mask0, | |||
mask1, | |||
mask2, | |||
out0, | |||
out1, | |||
out2 | |||
) |
Definition at line 809 of file generic_macros_msa.h.
#define VSHF_B3_SB | ( | ... | ) | VSHF_B3(v16i8, __VA_ARGS__) |
Definition at line 815 of file generic_macros_msa.h.
Referenced by common_hz_8t_48w_msa().
#define VSHF_B4 | ( | RTYPE, | |
in0, | |||
in1, | |||
mask0, | |||
mask1, | |||
mask2, | |||
mask3, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 817 of file generic_macros_msa.h.
#define VSHF_B4_SB | ( | ... | ) | VSHF_B4(v16i8, __VA_ARGS__) |
Definition at line 823 of file generic_macros_msa.h.
Referenced by hevc_hv_8t_4w_msa(), hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_8t_4w_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_8t_4w_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_8t_4w_msa(), hevc_hv_uniwgt_8t_8multx2mult_msa(), hevc_hz_8t_16w_msa(), hevc_hz_8t_24w_msa(), hevc_hz_8t_32w_msa(), hevc_hz_8t_48w_msa(), hevc_hz_8t_4w_msa(), hevc_hz_8t_64w_msa(), hevc_hz_8t_8w_msa(), hevc_hz_bi_8t_16w_msa(), hevc_hz_bi_8t_24w_msa(), hevc_hz_bi_8t_32w_msa(), hevc_hz_bi_8t_48w_msa(), hevc_hz_bi_8t_4w_msa(), hevc_hz_bi_8t_64w_msa(), hevc_hz_bi_8t_8w_msa(), hevc_hz_biwgt_8t_16w_msa(), hevc_hz_biwgt_8t_24w_msa(), hevc_hz_biwgt_8t_32w_msa(), hevc_hz_biwgt_8t_48w_msa(), hevc_hz_biwgt_8t_4w_msa(), hevc_hz_biwgt_8t_64w_msa(), hevc_hz_biwgt_8t_8w_msa(), hevc_hz_uniwgt_8t_16w_msa(), hevc_hz_uniwgt_8t_24w_msa(), hevc_hz_uniwgt_8t_32w_msa(), hevc_hz_uniwgt_8t_48w_msa(), hevc_hz_uniwgt_8t_4w_msa(), hevc_hz_uniwgt_8t_64w_msa(), and hevc_hz_uniwgt_8t_8w_msa().
#define VSHF_W2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
mask0, | |||
mask1, | |||
out0, | |||
out1 | |||
) |
Definition at line 834 of file generic_macros_msa.h.
#define VSHF_W2_SB | ( | ... | ) | VSHF_W2(v16i8, __VA_ARGS__) |
Definition at line 839 of file generic_macros_msa.h.
Referenced by common_vt_4t_12w_msa(), and common_vt_8t_12w_msa().
#define DOTP_SB2 | ( | RTYPE, | |
mult0, | |||
mult1, | |||
cnst0, | |||
cnst1, | |||
out0, | |||
out1 | |||
) |
Definition at line 853 of file generic_macros_msa.h.
#define DOTP_SB2_SH | ( | ... | ) | DOTP_SB2(v8i16, __VA_ARGS__) |
Definition at line 858 of file generic_macros_msa.h.
Referenced by common_hz_4t_12w_msa(), common_hz_4t_8x2mult_msa(), and common_hz_8t_24w_msa().
#define DOTP_SB3 | ( | RTYPE, | |
mult0, | |||
mult1, | |||
mult2, | |||
cnst0, | |||
cnst1, | |||
cnst2, | |||
out0, | |||
out1, | |||
out2 | |||
) |
Definition at line 860 of file generic_macros_msa.h.
#define DOTP_SB3_SH | ( | ... | ) | DOTP_SB3(v8i16, __VA_ARGS__) |
Definition at line 866 of file generic_macros_msa.h.
Referenced by common_hz_8t_48w_msa().
#define DOTP_SB4 | ( | RTYPE, | |
mult0, | |||
mult1, | |||
mult2, | |||
mult3, | |||
cnst0, | |||
cnst1, | |||
cnst2, | |||
cnst3, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 868 of file generic_macros_msa.h.
#define DOTP_SB4_SH | ( | ... | ) | DOTP_SB4(v8i16, __VA_ARGS__) |
Definition at line 874 of file generic_macros_msa.h.
Referenced by common_hz_4t_12w_msa(), common_hz_4t_24w_msa(), and common_hz_8t_24w_msa().
#define DOTP_SH2 | ( | RTYPE, | |
mult0, | |||
mult1, | |||
cnst0, | |||
cnst1, | |||
out0, | |||
out1 | |||
) |
Definition at line 888 of file generic_macros_msa.h.
#define DOTP_SH2_SW | ( | ... | ) | DOTP_SH2(v4i32, __VA_ARGS__) |
Definition at line 893 of file generic_macros_msa.h.
Referenced by hevc_hz_uniwgt_4t_4x2_msa(), hevc_idct_8x32_column_msa(), hevc_uniwgt_copy_4w_msa(), and hevc_vt_uniwgt_4t_4x2_msa().
#define DOTP_SH4 | ( | RTYPE, | |
mult0, | |||
mult1, | |||
mult2, | |||
mult3, | |||
cnst0, | |||
cnst1, | |||
cnst2, | |||
cnst3, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 895 of file generic_macros_msa.h.
#define DOTP_SH4_SW | ( | ... | ) | DOTP_SH4(v4i32, __VA_ARGS__) |
Definition at line 902 of file generic_macros_msa.h.
Referenced by hevc_idct_8x32_column_msa().
#define DPADD_SB2 | ( | RTYPE, | |
mult0, | |||
mult1, | |||
cnst0, | |||
cnst1, | |||
out0, | |||
out1 | |||
) |
Definition at line 916 of file generic_macros_msa.h.
#define DPADD_SB2_SH | ( | ... | ) | DPADD_SB2(v8i16, __VA_ARGS__) |
Definition at line 923 of file generic_macros_msa.h.
Referenced by common_hz_4t_12w_msa(), common_hz_4t_8x2mult_msa(), common_hz_8t_24w_msa(), common_hz_8t_48w_msa(), hevc_hv_4t_4multx8mult_msa(), hevc_hv_4t_4x2_msa(), hevc_hv_4t_4x4_msa(), hevc_hv_4t_6w_msa(), hevc_hv_4t_8multx4mult_msa(), hevc_hv_4t_8x2_msa(), hevc_hv_4t_8x6_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_bi_4t_4x2_msa(), hevc_hv_bi_4t_4x4_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_bi_4t_8multx4mult_msa(), hevc_hv_bi_4t_8x2_msa(), hevc_hv_bi_4t_8x6_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hv_biwgt_4t_6w_msa(), hevc_hv_biwgt_4t_8multx4mult_msa(), hevc_hv_biwgt_4t_8x2_msa(), hevc_hv_biwgt_4t_8x6_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uni_4t_4x2_msa(), hevc_hv_uni_4t_4x4_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), hevc_hv_uni_4t_8x2_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_hv_uniwgt_4t_4multx8mult_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_4t_4x4_msa(), hevc_hv_uniwgt_4t_6w_msa(), hevc_hv_uniwgt_4t_8multx4mult_msa(), hevc_hv_uniwgt_4t_8x2_msa(), hevc_hv_uniwgt_4t_8x6_msa(), hevc_hz_4t_12w_msa(), hevc_hz_4t_16w_msa(), hevc_hz_4t_24w_msa(), hevc_hz_4t_32w_msa(), hevc_hz_4t_4x2_msa(), hevc_hz_4t_4x4_msa(), hevc_hz_4t_4x8multiple_msa(), hevc_hz_4t_6w_msa(), hevc_hz_4t_8x2multiple_msa(), hevc_hz_4t_8x4multiple_msa(), hevc_hz_bi_4t_12w_msa(), hevc_hz_bi_4t_16w_msa(), hevc_hz_bi_4t_24w_msa(), hevc_hz_bi_4t_32w_msa(), hevc_hz_bi_4t_4x2_msa(), hevc_hz_bi_4t_4x4_msa(), hevc_hz_bi_4t_4x8multiple_msa(), hevc_hz_bi_4t_6w_msa(), hevc_hz_bi_4t_8x2_msa(), hevc_hz_bi_4t_8x4multiple_msa(), hevc_hz_bi_4t_8x6_msa(), hevc_hz_biwgt_4t_12w_msa(), hevc_hz_biwgt_4t_16w_msa(), hevc_hz_biwgt_4t_24w_msa(), hevc_hz_biwgt_4t_32w_msa(), hevc_hz_biwgt_4t_4x2_msa(), hevc_hz_biwgt_4t_4x4_msa(), hevc_hz_biwgt_4t_4x8multiple_msa(), hevc_hz_biwgt_4t_6w_msa(), hevc_hz_biwgt_4t_8x2_msa(), hevc_hz_biwgt_4t_8x4multiple_msa(), hevc_hz_biwgt_4t_8x6_msa(), hevc_hz_uniwgt_4t_12w_msa(), hevc_hz_uniwgt_4t_16w_msa(), hevc_hz_uniwgt_4t_24w_msa(), hevc_hz_uniwgt_4t_32w_msa(), hevc_hz_uniwgt_4t_4x2_msa(), hevc_hz_uniwgt_4t_4x4_msa(), hevc_hz_uniwgt_4t_4x8multiple_msa(), hevc_hz_uniwgt_4t_6w_msa(), hevc_hz_uniwgt_4t_8x2_msa(), hevc_hz_uniwgt_4t_8x4multiple_msa(), hevc_hz_uniwgt_4t_8x6_msa(), hevc_vt_4t_12w_msa(), hevc_vt_4t_16w_msa(), hevc_vt_4t_24w_msa(), hevc_vt_4t_32w_msa(), hevc_vt_4t_4x2_msa(), hevc_vt_4t_4x4_msa(), hevc_vt_4t_4x8multiple_msa(), hevc_vt_4t_6w_msa(), hevc_vt_4t_8x2_msa(), hevc_vt_4t_8x4multiple_msa(), hevc_vt_4t_8x6_msa(), hevc_vt_bi_4t_12w_msa(), hevc_vt_bi_4t_16w_msa(), hevc_vt_bi_4t_24w_msa(), hevc_vt_bi_4t_32w_msa(), hevc_vt_bi_4t_4x2_msa(), hevc_vt_bi_4t_4x4_msa(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_4t_6w_msa(), hevc_vt_bi_4t_8x2_msa(), hevc_vt_bi_4t_8x4multiple_msa(), hevc_vt_bi_4t_8x6_msa(), hevc_vt_biwgt_4t_12w_msa(), hevc_vt_biwgt_4t_16w_msa(), hevc_vt_biwgt_4t_24w_msa(), hevc_vt_biwgt_4t_32w_msa(), hevc_vt_biwgt_4t_4x2_msa(), hevc_vt_biwgt_4t_4x4_msa(), hevc_vt_biwgt_4t_4x8multiple_msa(), hevc_vt_biwgt_4t_6w_msa(), hevc_vt_biwgt_4t_8x2_msa(), hevc_vt_biwgt_4t_8x4multiple_msa(), hevc_vt_biwgt_4t_8x6_msa(), hevc_vt_uniwgt_4t_12w_msa(), hevc_vt_uniwgt_4t_16w_msa(), hevc_vt_uniwgt_4t_24w_msa(), hevc_vt_uniwgt_4t_32w_msa(), hevc_vt_uniwgt_4t_4x2_msa(), hevc_vt_uniwgt_4t_4x4_msa(), hevc_vt_uniwgt_4t_4x8multiple_msa(), hevc_vt_uniwgt_4t_6w_msa(), hevc_vt_uniwgt_4t_8x2_msa(), hevc_vt_uniwgt_4t_8x4multiple_msa(), and hevc_vt_uniwgt_4t_8x6_msa().
#define DPADD_SB4 | ( | RTYPE, | |
mult0, | |||
mult1, | |||
mult2, | |||
mult3, | |||
cnst0, | |||
cnst1, | |||
cnst2, | |||
cnst3, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 925 of file generic_macros_msa.h.
#define DPADD_SB4_SH | ( | ... | ) | DPADD_SB4(v8i16, __VA_ARGS__) |
Definition at line 931 of file generic_macros_msa.h.
Referenced by common_hz_4t_12w_msa(), common_hz_4t_24w_msa(), common_hz_8t_24w_msa(), hevc_hv_8t_4w_msa(), hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_8t_4w_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_8t_4w_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_8t_4w_msa(), hevc_hv_uniwgt_8t_8multx2mult_msa(), hevc_hz_8t_16w_msa(), hevc_hz_8t_24w_msa(), hevc_hz_8t_32w_msa(), hevc_hz_8t_48w_msa(), hevc_hz_8t_4w_msa(), hevc_hz_8t_64w_msa(), hevc_hz_8t_8w_msa(), hevc_hz_bi_8t_16w_msa(), hevc_hz_bi_8t_24w_msa(), hevc_hz_bi_8t_32w_msa(), hevc_hz_bi_8t_48w_msa(), hevc_hz_bi_8t_4w_msa(), hevc_hz_bi_8t_64w_msa(), hevc_hz_bi_8t_8w_msa(), hevc_hz_biwgt_8t_16w_msa(), hevc_hz_biwgt_8t_24w_msa(), hevc_hz_biwgt_8t_32w_msa(), hevc_hz_biwgt_8t_48w_msa(), hevc_hz_biwgt_8t_4w_msa(), hevc_hz_biwgt_8t_64w_msa(), hevc_hz_biwgt_8t_8w_msa(), hevc_hz_uniwgt_8t_16w_msa(), hevc_hz_uniwgt_8t_24w_msa(), hevc_hz_uniwgt_8t_32w_msa(), hevc_hz_uniwgt_8t_48w_msa(), hevc_hz_uniwgt_8t_4w_msa(), hevc_hz_uniwgt_8t_64w_msa(), hevc_hz_uniwgt_8t_8w_msa(), hevc_vt_8t_12w_msa(), hevc_vt_8t_16multx4mult_msa(), hevc_vt_8t_4w_msa(), hevc_vt_8t_8w_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_16multx2mult_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_bi_8t_8w_msa(), hevc_vt_biwgt_8t_12w_msa(), hevc_vt_biwgt_8t_16multx2mult_msa(), hevc_vt_biwgt_8t_4w_msa(), hevc_vt_biwgt_8t_8w_msa(), hevc_vt_uniwgt_8t_12w_msa(), hevc_vt_uniwgt_8t_16multx2mult_msa(), hevc_vt_uniwgt_8t_4w_msa(), and hevc_vt_uniwgt_8t_8w_msa().
#define DPADD_SH2 | ( | RTYPE, | |
mult0, | |||
mult1, | |||
cnst0, | |||
cnst1, | |||
out0, | |||
out1 | |||
) |
Definition at line 945 of file generic_macros_msa.h.
#define DPADD_SH2_SW | ( | ... | ) | DPADD_SH2(v4i32, __VA_ARGS__) |
Definition at line 952 of file generic_macros_msa.h.
Referenced by hevc_idct_8x32_column_msa().
#define DPADD_SH4 | ( | RTYPE, | |
mult0, | |||
mult1, | |||
mult2, | |||
mult3, | |||
cnst0, | |||
cnst1, | |||
cnst2, | |||
cnst3, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 954 of file generic_macros_msa.h.
#define DPADD_SH4_SW | ( | ... | ) | DPADD_SH4(v4i32, __VA_ARGS__) |
Definition at line 960 of file generic_macros_msa.h.
Referenced by hevc_idct_8x32_column_msa().
Definition at line 970 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_msa().
#define CLIP_SH_0_255 | ( | in | ) |
Definition at line 985 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_msa(), hevc_bi_copy_4w_msa(), hevc_hv_bi_4t_4x2_msa(), hevc_hv_uni_4t_4x2_msa(), hevc_hz_bi_4t_4x2_msa(), hevc_hz_bi_8t_24w_msa(), and hevc_vt_bi_4t_4x2_msa().
#define CLIP_SH2_0_255 | ( | in0, | |
in1 | |||
) |
Definition at line 994 of file generic_macros_msa.h.
Referenced by avc_biwgt_4x2_msa(), hevc_addblk_4x4_msa(), hevc_hv_uni_4t_4x4_msa(), hevc_hv_uni_4t_8x2_msa(), and hevc_hv_uni_4t_8x6_msa().
#define CLIP_SH4_0_255 | ( | in0, | |
in1, | |||
in2, | |||
in3 | |||
) |
Definition at line 999 of file generic_macros_msa.h.
Referenced by avc_biwgt_16width_msa(), avc_biwgt_4x4multiple_msa(), avc_biwgt_8width_msa(), hevc_addblk_16x16_msa(), hevc_addblk_32x32_msa(), hevc_addblk_8x8_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), and hevc_hv_uni_4t_8x6_msa().
#define CLIP_SW_0_255 | ( | in | ) |
Definition at line 1011 of file generic_macros_msa.h.
Referenced by hevc_biwgt_copy_4w_msa(), hevc_hv_bi_8t_4w_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_8t_4w_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_8t_4w_msa(), hevc_hz_biwgt_4t_4x2_msa(), hevc_hz_biwgt_8t_24w_msa(), hevc_hz_biwgt_8t_48w_msa(), hevc_hz_uniwgt_4t_4x2_msa(), hevc_uniwgt_copy_4w_msa(), hevc_vt_biwgt_4t_4x2_msa(), hevc_vt_biwgt_8t_12w_msa(), and hevc_vt_uniwgt_4t_4x2_msa().
#define HSUB_UB2 | ( | RTYPE, | |
in0, | |||
in1, | |||
out0, | |||
out1 | |||
) |
Definition at line 1029 of file generic_macros_msa.h.
#define HSUB_UB2_UH | ( | ... | ) | HSUB_UB2(v8u16, __VA_ARGS__) |
Definition at line 1034 of file generic_macros_msa.h.
#define HSUB_UB2_SH | ( | ... | ) | HSUB_UB2(v8i16, __VA_ARGS__) |
Definition at line 1035 of file generic_macros_msa.h.
#define INSERT_W4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out | |||
) |
Definition at line 1037 of file generic_macros_msa.h.
#define INSERT_W4_UB | ( | ... | ) | INSERT_W4(v16u8, __VA_ARGS__) |
Definition at line 1044 of file generic_macros_msa.h.
#define INSERT_W4_SB | ( | ... | ) | INSERT_W4(v16i8, __VA_ARGS__) |
Definition at line 1045 of file generic_macros_msa.h.
#define INSERT_W4_SW | ( | ... | ) | INSERT_W4(v4i32, __VA_ARGS__) |
Definition at line 1046 of file generic_macros_msa.h.
Referenced by hevc_addblk_4x4_msa().
#define INSERT_D2 | ( | RTYPE, | |
in0, | |||
in1, | |||
out | |||
) |
Definition at line 1054 of file generic_macros_msa.h.
#define INSERT_D2_UB | ( | ... | ) | INSERT_D2(v16u8, __VA_ARGS__) |
Definition at line 1059 of file generic_macros_msa.h.
#define INSERT_D2_SB | ( | ... | ) | INSERT_D2(v16i8, __VA_ARGS__) |
Definition at line 1060 of file generic_macros_msa.h.
#define INSERT_D2_SD | ( | ... | ) | INSERT_D2(v2i64, __VA_ARGS__) |
Definition at line 1061 of file generic_macros_msa.h.
Referenced by hevc_addblk_8x8_msa().
#define ILVEV_H2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1072 of file generic_macros_msa.h.
#define ILVEV_H2_UB | ( | ... | ) | ILVEV_H2(v16u8, __VA_ARGS__) |
Definition at line 1077 of file generic_macros_msa.h.
#define ILVEV_W2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1088 of file generic_macros_msa.h.
#define ILVEV_W2_SB | ( | ... | ) | ILVEV_W2(v16i8, __VA_ARGS__) |
Definition at line 1093 of file generic_macros_msa.h.
#define ILVEV_D2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1104 of file generic_macros_msa.h.
#define ILVEV_D2_UB | ( | ... | ) | ILVEV_D2(v16u8, __VA_ARGS__) |
Definition at line 1109 of file generic_macros_msa.h.
#define ILVL_B2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1120 of file generic_macros_msa.h.
#define ILVL_B2_SB | ( | ... | ) | ILVL_B2(v16i8, __VA_ARGS__) |
Definition at line 1125 of file generic_macros_msa.h.
Referenced by common_vt_4t_16w_msa(), common_vt_4t_24w_msa(), common_vt_4t_32w_mult_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), hevc_vt_4t_12w_msa(), hevc_vt_4t_16w_msa(), hevc_vt_4t_24w_msa(), hevc_vt_4t_32w_msa(), hevc_vt_8t_12w_msa(), hevc_vt_8t_16multx4mult_msa(), hevc_vt_bi_4t_12w_msa(), hevc_vt_bi_4t_16w_msa(), hevc_vt_bi_4t_24w_msa(), hevc_vt_bi_4t_32w_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_16multx2mult_msa(), hevc_vt_biwgt_4t_12w_msa(), hevc_vt_biwgt_4t_16w_msa(), hevc_vt_biwgt_4t_24w_msa(), hevc_vt_biwgt_4t_32w_msa(), hevc_vt_biwgt_8t_12w_msa(), hevc_vt_biwgt_8t_16multx2mult_msa(), hevc_vt_uniwgt_4t_12w_msa(), hevc_vt_uniwgt_4t_16w_msa(), hevc_vt_uniwgt_4t_24w_msa(), hevc_vt_uniwgt_4t_32w_msa(), hevc_vt_uniwgt_8t_12w_msa(), and hevc_vt_uniwgt_8t_16multx2mult_msa().
#define ILVL_B2_SH | ( | ... | ) | ILVL_B2(v8i16, __VA_ARGS__) |
Definition at line 1126 of file generic_macros_msa.h.
Referenced by avc_loopfilter_luma_intra_edge_hor_msa(), avc_loopfilter_luma_intra_edge_ver_msa(), and hevc_uniwgt_copy_16multx4mult_msa().
#define ILVL_B4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1128 of file generic_macros_msa.h.
#define ILVL_B4_SB | ( | ... | ) | ILVL_B4(v16i8, __VA_ARGS__) |
Definition at line 1134 of file generic_macros_msa.h.
Referenced by avc_biwgt_16width_msa(), common_vt_4t_16w_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), hevc_vt_8t_12w_msa(), hevc_vt_8t_16multx4mult_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_16multx2mult_msa(), hevc_vt_biwgt_8t_12w_msa(), hevc_vt_biwgt_8t_16multx2mult_msa(), hevc_vt_uniwgt_8t_12w_msa(), and hevc_vt_uniwgt_8t_16multx2mult_msa().
#define ILVL_B4_UH | ( | ... | ) | ILVL_B4(v8u16, __VA_ARGS__) |
Definition at line 1135 of file generic_macros_msa.h.
Referenced by avc_wgt_16width_msa().
#define ILVL_B4_SH | ( | ... | ) | ILVL_B4(v8i16, __VA_ARGS__) |
Definition at line 1136 of file generic_macros_msa.h.
Referenced by hevc_bi_copy_16multx4mult_msa(), hevc_biwgt_copy_16multx4mult_msa(), hevc_copy_16multx8mult_msa(), and hevc_copy_16w_msa().
#define ILVL_H2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1147 of file generic_macros_msa.h.
#define ILVL_H2_SH | ( | ... | ) | ILVL_H2(v8i16, __VA_ARGS__) |
Definition at line 1152 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_intra_msa(), avc_h_loop_filter_luma_mbaff_msa(), hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_8t_8multx2mult_msa(), and hevc_idct_8x32_column_msa().
#define ILVL_H2_SW | ( | ... | ) | ILVL_H2(v4i32, __VA_ARGS__) |
Definition at line 1153 of file generic_macros_msa.h.
#define ILVL_H4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1155 of file generic_macros_msa.h.
#define ILVL_H4_SH | ( | ... | ) | ILVL_H4(v8i16, __VA_ARGS__) |
Definition at line 1161 of file generic_macros_msa.h.
Referenced by hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_8t_8multx2mult_msa(), hevc_idct_16x16_msa(), and hevc_idct_8x32_column_msa().
#define ILVL_W2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1172 of file generic_macros_msa.h.
#define ILVL_W2_SB | ( | ... | ) | ILVL_W2(v16i8, __VA_ARGS__) |
Definition at line 1177 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_intra_msa(), hevc_bi_copy_12w_msa(), hevc_biwgt_copy_12w_msa(), hevc_copy_12w_msa(), and hevc_uniwgt_copy_12w_msa().
#define ILVR_B2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1189 of file generic_macros_msa.h.
#define ILVR_B2_UB | ( | ... | ) | ILVR_B2(v16u8, __VA_ARGS__) |
Definition at line 1194 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_intra_msa(), and avc_h_loop_filter_luma_mbaff_msa().
#define ILVR_B2_SB | ( | ... | ) | ILVR_B2(v16i8, __VA_ARGS__) |
Definition at line 1195 of file generic_macros_msa.h.
Referenced by common_vt_4t_16w_msa(), common_vt_4t_24w_msa(), common_vt_4t_32w_mult_msa(), common_vt_4t_4x2_msa(), common_vt_4t_4x4multiple_msa(), common_vt_4t_8x4mult_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), common_vt_8t_4w_msa(), common_vt_8t_8w_msa(), hevc_vt_4t_12w_msa(), hevc_vt_4t_16w_msa(), hevc_vt_4t_24w_msa(), hevc_vt_4t_32w_msa(), hevc_vt_4t_4x4_msa(), hevc_vt_4t_4x8multiple_msa(), hevc_vt_4t_6w_msa(), hevc_vt_4t_8x2_msa(), hevc_vt_4t_8x4multiple_msa(), hevc_vt_4t_8x6_msa(), hevc_vt_8t_12w_msa(), hevc_vt_8t_16multx4mult_msa(), hevc_vt_8t_4w_msa(), hevc_vt_8t_8w_msa(), hevc_vt_bi_4t_12w_msa(), hevc_vt_bi_4t_16w_msa(), hevc_vt_bi_4t_24w_msa(), hevc_vt_bi_4t_32w_msa(), hevc_vt_bi_4t_4x2_msa(), hevc_vt_bi_4t_4x4_msa(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_4t_6w_msa(), hevc_vt_bi_4t_8x2_msa(), hevc_vt_bi_4t_8x4multiple_msa(), hevc_vt_bi_4t_8x6_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_16multx2mult_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_bi_8t_8w_msa(), hevc_vt_biwgt_4t_12w_msa(), hevc_vt_biwgt_4t_16w_msa(), hevc_vt_biwgt_4t_24w_msa(), hevc_vt_biwgt_4t_32w_msa(), hevc_vt_biwgt_4t_4x2_msa(), hevc_vt_biwgt_4t_4x4_msa(), hevc_vt_biwgt_4t_4x8multiple_msa(), hevc_vt_biwgt_4t_6w_msa(), hevc_vt_biwgt_4t_8x2_msa(), hevc_vt_biwgt_4t_8x4multiple_msa(), hevc_vt_biwgt_4t_8x6_msa(), hevc_vt_biwgt_8t_12w_msa(), hevc_vt_biwgt_8t_16multx2mult_msa(), hevc_vt_biwgt_8t_4w_msa(), hevc_vt_biwgt_8t_8w_msa(), hevc_vt_uniwgt_4t_12w_msa(), hevc_vt_uniwgt_4t_16w_msa(), hevc_vt_uniwgt_4t_24w_msa(), hevc_vt_uniwgt_4t_32w_msa(), hevc_vt_uniwgt_4t_4x2_msa(), hevc_vt_uniwgt_4t_4x4_msa(), hevc_vt_uniwgt_4t_4x8multiple_msa(), hevc_vt_uniwgt_4t_6w_msa(), hevc_vt_uniwgt_4t_8x2_msa(), hevc_vt_uniwgt_4t_8x4multiple_msa(), hevc_vt_uniwgt_4t_8x6_msa(), hevc_vt_uniwgt_8t_12w_msa(), hevc_vt_uniwgt_8t_16multx2mult_msa(), hevc_vt_uniwgt_8t_4w_msa(), and hevc_vt_uniwgt_8t_8w_msa().
#define ILVR_B2_UH | ( | ... | ) | ILVR_B2(v8u16, __VA_ARGS__) |
Definition at line 1196 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_msa().
#define ILVR_B2_SH | ( | ... | ) | ILVR_B2(v8i16, __VA_ARGS__) |
Definition at line 1197 of file generic_macros_msa.h.
Referenced by avc_biwgt_4x2_msa(), avc_h_loop_filter_luma_mbaff_msa(), avc_loopfilter_cb_or_cr_inter_edge_hor_msa(), avc_loopfilter_cb_or_cr_inter_edge_ver_msa(), avc_loopfilter_luma_inter_edge_hor_msa(), avc_loopfilter_luma_inter_edge_ver_msa(), avc_loopfilter_luma_intra_edge_hor_msa(), avc_loopfilter_luma_intra_edge_ver_msa(), avc_wgt_4x2_msa(), common_vt_4t_12w_msa(), common_vt_4t_6w_msa(), common_vt_4t_8x2_msa(), common_vt_4t_8x6_msa(), hevc_bi_copy_12w_msa(), hevc_bi_copy_4w_msa(), hevc_bi_copy_8w_msa(), hevc_biwgt_copy_12w_msa(), hevc_biwgt_copy_4w_msa(), hevc_biwgt_copy_8w_msa(), hevc_copy_12w_msa(), hevc_copy_4w_msa(), hevc_copy_8w_msa(), hevc_uniwgt_copy_12w_msa(), hevc_uniwgt_copy_16multx4mult_msa(), hevc_uniwgt_copy_4w_msa(), and hevc_uniwgt_copy_8w_msa().
#define ILVR_B2_SW | ( | ... | ) | ILVR_B2(v4i32, __VA_ARGS__) |
Definition at line 1198 of file generic_macros_msa.h.
#define ILVR_B3 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
out0, | |||
out1, | |||
out2 | |||
) |
Definition at line 1200 of file generic_macros_msa.h.
#define ILVR_B3_UB | ( | ... | ) | ILVR_B3(v16u8, __VA_ARGS__) |
Definition at line 1205 of file generic_macros_msa.h.
#define ILVR_B3_UH | ( | ... | ) | ILVR_B3(v8u16, __VA_ARGS__) |
Definition at line 1206 of file generic_macros_msa.h.
#define ILVR_B3_SH | ( | ... | ) | ILVR_B3(v8i16, __VA_ARGS__) |
Definition at line 1207 of file generic_macros_msa.h.
Referenced by common_vt_4t_12w_msa(), and common_vt_4t_8x6_msa().
#define ILVR_B4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1209 of file generic_macros_msa.h.
#define ILVR_B4_SB | ( | ... | ) | ILVR_B4(v16i8, __VA_ARGS__) |
Definition at line 1215 of file generic_macros_msa.h.
Referenced by avc_biwgt_16width_msa(), avc_h_loop_filter_luma_mbaff_intra_msa(), avc_h_loop_filter_luma_mbaff_msa(), common_vt_4t_16w_msa(), common_vt_4t_8x4mult_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), common_vt_8t_4w_msa(), common_vt_8t_8w_msa(), hevc_vt_4t_4x2_msa(), hevc_vt_4t_4x4_msa(), hevc_vt_4t_4x8multiple_msa(), hevc_vt_8t_12w_msa(), hevc_vt_8t_16multx4mult_msa(), hevc_vt_8t_4w_msa(), hevc_vt_8t_8w_msa(), hevc_vt_bi_4t_4x4_msa(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_4t_8x6_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_16multx2mult_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_bi_8t_8w_msa(), hevc_vt_biwgt_4t_4x4_msa(), hevc_vt_biwgt_4t_4x8multiple_msa(), hevc_vt_biwgt_4t_8x6_msa(), hevc_vt_biwgt_8t_12w_msa(), hevc_vt_biwgt_8t_16multx2mult_msa(), hevc_vt_biwgt_8t_4w_msa(), hevc_vt_biwgt_8t_8w_msa(), hevc_vt_uniwgt_4t_4x4_msa(), hevc_vt_uniwgt_4t_4x8multiple_msa(), hevc_vt_uniwgt_4t_8x6_msa(), hevc_vt_uniwgt_8t_12w_msa(), hevc_vt_uniwgt_8t_16multx2mult_msa(), hevc_vt_uniwgt_8t_4w_msa(), and hevc_vt_uniwgt_8t_8w_msa().
#define ILVR_B4_UH | ( | ... | ) | ILVR_B4(v8u16, __VA_ARGS__) |
Definition at line 1216 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_intra_msa(), avc_wgt_16width_msa(), avc_wgt_4x4multiple_msa(), and avc_wgt_8width_msa().
#define ILVR_B4_SH | ( | ... | ) | ILVR_B4(v8i16, __VA_ARGS__) |
Definition at line 1217 of file generic_macros_msa.h.
Referenced by avc_biwgt_4x4multiple_msa(), avc_biwgt_8width_msa(), avc_loopfilter_cb_or_cr_inter_edge_hor_msa(), avc_loopfilter_cb_or_cr_inter_edge_ver_msa(), avc_loopfilter_cb_or_cr_intra_edge_hor_msa(), avc_loopfilter_cb_or_cr_intra_edge_ver_msa(), common_vt_4t_12w_msa(), common_vt_8t_12w_msa(), hevc_bi_copy_12w_msa(), hevc_bi_copy_16multx4mult_msa(), hevc_bi_copy_4w_msa(), hevc_bi_copy_6w_msa(), hevc_bi_copy_8w_msa(), hevc_biwgt_copy_12w_msa(), hevc_biwgt_copy_16multx4mult_msa(), hevc_biwgt_copy_4w_msa(), hevc_biwgt_copy_6w_msa(), hevc_biwgt_copy_8w_msa(), hevc_copy_12w_msa(), hevc_copy_16multx8mult_msa(), hevc_copy_16w_msa(), hevc_copy_4w_msa(), hevc_copy_6w_msa(), hevc_copy_8w_msa(), hevc_uniwgt_copy_12w_msa(), hevc_uniwgt_copy_4w_msa(), hevc_uniwgt_copy_6w_msa(), and hevc_uniwgt_copy_8w_msa().
#define ILVR_H2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1229 of file generic_macros_msa.h.
#define ILVR_H2_SH | ( | ... | ) | ILVR_H2(v8i16, __VA_ARGS__) |
Definition at line 1234 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_intra_msa(), avc_h_loop_filter_luma_mbaff_msa(), hevc_hv_4t_4multx8mult_msa(), hevc_hv_4t_4x2_msa(), hevc_hv_4t_4x4_msa(), hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_bi_4t_4x2_msa(), hevc_hv_bi_4t_4x4_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uni_4t_4x2_msa(), hevc_hv_uni_4t_4x4_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_4t_4multx8mult_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_4t_4x4_msa(), hevc_hv_uniwgt_8t_8multx2mult_msa(), and hevc_idct_8x32_column_msa().
#define ILVR_H2_SW | ( | ... | ) | ILVR_H2(v4i32, __VA_ARGS__) |
Definition at line 1235 of file generic_macros_msa.h.
#define ILVR_H3 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
out0, | |||
out1, | |||
out2 | |||
) |
Definition at line 1237 of file generic_macros_msa.h.
#define ILVR_H3_SH | ( | ... | ) | ILVR_H3(v8i16, __VA_ARGS__) |
Definition at line 1242 of file generic_macros_msa.h.
Referenced by hevc_hv_8t_4w_msa(), hevc_hv_bi_8t_4w_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_uni_8t_4w_msa(), and hevc_hv_uniwgt_8t_4w_msa().
#define ILVR_H4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1244 of file generic_macros_msa.h.
#define ILVR_H4_SH | ( | ... | ) | ILVR_H4(v8i16, __VA_ARGS__) |
Definition at line 1250 of file generic_macros_msa.h.
Referenced by hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_8t_8multx2mult_msa(), hevc_idct_16x16_msa(), and hevc_idct_8x32_column_msa().
#define ILVR_W2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1252 of file generic_macros_msa.h.
#define ILVR_W2_UB | ( | ... | ) | ILVR_W2(v16u8, __VA_ARGS__) |
Definition at line 1257 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_intra_msa().
#define ILVR_W2_SB | ( | ... | ) | ILVR_W2(v16i8, __VA_ARGS__) |
Definition at line 1258 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_intra_msa(), hevc_bi_copy_4w_msa(), hevc_biwgt_copy_4w_msa(), hevc_copy_4w_msa(), and hevc_uniwgt_copy_4w_msa().
#define ILVR_W4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1260 of file generic_macros_msa.h.
#define ILVR_W4_SB | ( | ... | ) | ILVR_W4(v16i8, __VA_ARGS__) |
Definition at line 1266 of file generic_macros_msa.h.
Referenced by hevc_bi_copy_4w_msa(), hevc_biwgt_copy_4w_msa(), hevc_copy_4w_msa(), and hevc_uniwgt_copy_4w_msa().
#define ILVR_D2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1277 of file generic_macros_msa.h.
#define ILVR_D2_SB | ( | ... | ) | ILVR_D2(v16i8, __VA_ARGS__) |
Definition at line 1282 of file generic_macros_msa.h.
Referenced by common_vt_8t_4w_msa(), hevc_vt_4t_4x2_msa(), hevc_vt_8t_12w_msa(), hevc_vt_bi_4t_4x4_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_biwgt_4t_4x4_msa(), hevc_vt_uniwgt_4t_4x4_msa(), and hevc_vt_uniwgt_8t_12w_msa().
#define ILVR_D2_SH | ( | ... | ) | ILVR_D2(v8i16, __VA_ARGS__) |
Definition at line 1283 of file generic_macros_msa.h.
Referenced by hevc_bi_copy_12w_msa(), hevc_bi_copy_4w_msa(), hevc_biwgt_copy_12w_msa(), hevc_biwgt_copy_4w_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_bi_4t_4x4_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hz_bi_4t_12w_msa(), hevc_hz_bi_4t_4x4_msa(), hevc_hz_bi_4t_4x8multiple_msa(), hevc_hz_bi_8t_4w_msa(), hevc_hz_biwgt_4t_12w_msa(), hevc_hz_biwgt_4t_4x4_msa(), hevc_hz_biwgt_4t_4x8multiple_msa(), hevc_hz_biwgt_8t_4w_msa(), hevc_vt_bi_4t_12w_msa(), hevc_vt_bi_4t_4x4_msa(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_biwgt_4t_12w_msa(), hevc_vt_biwgt_4t_4x4_msa(), hevc_vt_biwgt_4t_4x8multiple_msa(), and hevc_vt_biwgt_8t_4w_msa().
#define ILVR_D3 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
out0, | |||
out1, | |||
out2 | |||
) |
Definition at line 1285 of file generic_macros_msa.h.
#define ILVR_D3_SB | ( | ... | ) | ILVR_D3(v16i8, __VA_ARGS__) |
Definition at line 1290 of file generic_macros_msa.h.
Referenced by common_vt_8t_4w_msa(), hevc_vt_4t_4x4_msa(), hevc_vt_4t_4x8multiple_msa(), hevc_vt_8t_12w_msa(), hevc_vt_8t_4w_msa(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_biwgt_4t_4x8multiple_msa(), hevc_vt_biwgt_8t_12w_msa(), hevc_vt_biwgt_8t_4w_msa(), hevc_vt_uniwgt_4t_4x8multiple_msa(), hevc_vt_uniwgt_8t_12w_msa(), and hevc_vt_uniwgt_8t_4w_msa().
#define ILVR_D4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1292 of file generic_macros_msa.h.
#define ILVR_D4_SB | ( | ... | ) | ILVR_D4(v16i8, __VA_ARGS__) |
Definition at line 1298 of file generic_macros_msa.h.
Referenced by hevc_vt_8t_4w_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_biwgt_8t_4w_msa(), and hevc_vt_uniwgt_8t_4w_msa().
#define ILVRL_B2 | ( | RTYPE, | |
in0, | |||
in1, | |||
out0, | |||
out1 | |||
) |
Definition at line 1309 of file generic_macros_msa.h.
#define ILVRL_B2_SB | ( | ... | ) | ILVRL_B2(v16i8, __VA_ARGS__) |
Definition at line 1314 of file generic_macros_msa.h.
Referenced by avc_loopfilter_luma_inter_edge_ver_msa().
#define ILVRL_B2_SH | ( | ... | ) | ILVRL_B2(v8i16, __VA_ARGS__) |
Definition at line 1315 of file generic_macros_msa.h.
Referenced by avc_loopfilter_luma_inter_edge_hor_msa(), avc_loopfilter_luma_inter_edge_ver_msa(), avc_loopfilter_luma_intra_edge_ver_msa(), hevc_addblk_4x4_msa(), and hevc_addblk_8x8_msa().
#define ILVRL_H2 | ( | RTYPE, | |
in0, | |||
in1, | |||
out0, | |||
out1 | |||
) |
Definition at line 1317 of file generic_macros_msa.h.
#define ILVRL_H2_SB | ( | ... | ) | ILVRL_H2(v16i8, __VA_ARGS__) |
Definition at line 1322 of file generic_macros_msa.h.
#define ILVRL_H2_SH | ( | ... | ) | ILVRL_H2(v8i16, __VA_ARGS__) |
Definition at line 1323 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_intra_msa(), avc_loopfilter_luma_intra_edge_ver_msa(), hevc_hv_4t_6w_msa(), hevc_hv_4t_8multx4mult_msa(), hevc_hv_4t_8x2_msa(), hevc_hv_4t_8x6_msa(), hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_bi_4t_8multx4mult_msa(), hevc_hv_bi_4t_8x2_msa(), hevc_hv_bi_4t_8x6_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_4t_6w_msa(), hevc_hv_biwgt_4t_8multx4mult_msa(), hevc_hv_biwgt_4t_8x2_msa(), hevc_hv_biwgt_4t_8x6_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), hevc_hv_uni_4t_8x2_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_4t_6w_msa(), hevc_hv_uniwgt_4t_8multx4mult_msa(), hevc_hv_uniwgt_4t_8x2_msa(), hevc_hv_uniwgt_4t_8x6_msa(), and hevc_hv_uniwgt_8t_8multx2mult_msa().
#define ILVRL_H2_SW | ( | ... | ) | ILVRL_H2(v4i32, __VA_ARGS__) |
Definition at line 1324 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_msa(), avc_loopfilter_luma_inter_edge_ver_msa(), hevc_biwgt_copy_4w_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hz_biwgt_4t_4x2_msa(), hevc_hz_biwgt_8t_24w_msa(), hevc_hz_biwgt_8t_48w_msa(), hevc_hz_uniwgt_4t_4x2_msa(), hevc_idct_4x4_msa(), hevc_uniwgt_copy_4w_msa(), hevc_vt_biwgt_4t_4x2_msa(), hevc_vt_biwgt_8t_12w_msa(), and hevc_vt_uniwgt_4t_4x2_msa().
#define ILVRL_W2 | ( | RTYPE, | |
in0, | |||
in1, | |||
out0, | |||
out1 | |||
) |
Definition at line 1326 of file generic_macros_msa.h.
#define ILVRL_W2_UB | ( | ... | ) | ILVRL_W2(v16u8, __VA_ARGS__) |
Definition at line 1331 of file generic_macros_msa.h.
#define ILVRL_W2_SH | ( | ... | ) | ILVRL_W2(v8i16, __VA_ARGS__) |
Definition at line 1332 of file generic_macros_msa.h.
#define ILVRL_W2_SW | ( | ... | ) | ILVRL_W2(v4i32, __VA_ARGS__) |
Definition at line 1333 of file generic_macros_msa.h.
#define MAXI_SH2 | ( | RTYPE, | |
in0, | |||
in1, | |||
max_val | |||
) |
Definition at line 1343 of file generic_macros_msa.h.
#define MAXI_SH2_SH | ( | ... | ) | MAXI_SH2(v8i16, __VA_ARGS__) |
Definition at line 1348 of file generic_macros_msa.h.
Referenced by avc_wgt_4x2_msa().
#define MAXI_SH4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
max_val | |||
) |
Definition at line 1350 of file generic_macros_msa.h.
#define MAXI_SH4_UH | ( | ... | ) | MAXI_SH4(v8u16, __VA_ARGS__) |
Definition at line 1355 of file generic_macros_msa.h.
Referenced by avc_wgt_16width_msa(), avc_wgt_4x4multiple_msa(), and avc_wgt_8width_msa().
#define SAT_UH2 | ( | RTYPE, | |
in0, | |||
in1, | |||
sat_val | |||
) |
Definition at line 1367 of file generic_macros_msa.h.
#define SAT_UH2_UH | ( | ... | ) | SAT_UH2(v8u16, __VA_ARGS__) |
Definition at line 1372 of file generic_macros_msa.h.
Referenced by avc_wgt_4x2_msa().
#define SAT_UH4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
sat_val | |||
) |
Definition at line 1374 of file generic_macros_msa.h.
#define SAT_UH4_UH | ( | ... | ) | SAT_UH4(v8u16, __VA_ARGS__) |
Definition at line 1379 of file generic_macros_msa.h.
Referenced by avc_wgt_16width_msa(), avc_wgt_4x4multiple_msa(), and avc_wgt_8width_msa().
#define SAT_SH2 | ( | RTYPE, | |
in0, | |||
in1, | |||
sat_val | |||
) |
Definition at line 1391 of file generic_macros_msa.h.
#define SAT_SH2_SH | ( | ... | ) | SAT_SH2(v8i16, __VA_ARGS__) |
Definition at line 1396 of file generic_macros_msa.h.
Referenced by common_hz_4t_12w_msa(), common_hz_4t_4x4_msa(), common_hz_4t_8x2mult_msa(), common_hz_8t_12w_msa(), common_hz_8t_24w_msa(), common_hz_8t_4x4_msa(), common_vt_4t_12w_msa(), common_vt_4t_24w_msa(), common_vt_4t_4x4multiple_msa(), common_vt_4t_8x2_msa(), and common_vt_8t_4w_msa().
#define SAT_SH3 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
sat_val | |||
) |
Definition at line 1398 of file generic_macros_msa.h.
#define SAT_SH3_SH | ( | ... | ) | SAT_SH3(v8i16, __VA_ARGS__) |
Definition at line 1403 of file generic_macros_msa.h.
Referenced by common_hz_8t_48w_msa(), common_vt_4t_8x6_msa(), and common_vt_8t_12w_msa().
#define SAT_SH4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
sat_val | |||
) |
Definition at line 1405 of file generic_macros_msa.h.
#define SAT_SH4_SH | ( | ... | ) | SAT_SH4(v8i16, __VA_ARGS__) |
Definition at line 1410 of file generic_macros_msa.h.
Referenced by common_hz_4t_12w_msa(), common_hz_4t_16w_msa(), common_hz_4t_24w_msa(), common_hz_4t_32w_msa(), common_hz_4t_4x16_msa(), common_hz_4t_4x8_msa(), common_hz_4t_6w_msa(), common_hz_4t_8x4mult_msa(), common_hz_8t_12w_msa(), common_hz_8t_16w_msa(), common_hz_8t_24w_msa(), common_hz_8t_32w_msa(), common_hz_8t_4x16_msa(), common_hz_8t_4x8_msa(), common_hz_8t_64w_msa(), common_hz_8t_8x4_msa(), common_hz_8t_8x8mult_msa(), common_vt_4t_12w_msa(), common_vt_4t_16w_msa(), common_vt_4t_24w_msa(), common_vt_4t_32w_mult_msa(), common_vt_4t_6w_msa(), common_vt_4t_8x4mult_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), and common_vt_8t_8w_msa().
#define SAT_SW2 | ( | RTYPE, | |
in0, | |||
in1, | |||
sat_val | |||
) |
Definition at line 1422 of file generic_macros_msa.h.
#define SAT_SW2_SW | ( | ... | ) | SAT_SW2(v4i32, __VA_ARGS__) |
Definition at line 1427 of file generic_macros_msa.h.
Referenced by hevc_idct_8x32_column_msa().
#define SAT_SW4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
sat_val | |||
) |
Definition at line 1429 of file generic_macros_msa.h.
#define SAT_SW4_SW | ( | ... | ) | SAT_SW4(v4i32, __VA_ARGS__) |
Definition at line 1434 of file generic_macros_msa.h.
#define SPLATI_H2 | ( | RTYPE, | |
in, | |||
idx0, | |||
idx1, | |||
out0, | |||
out1 | |||
) |
Definition at line 1445 of file generic_macros_msa.h.
#define SPLATI_H2_SB | ( | ... | ) | SPLATI_H2(v16i8, __VA_ARGS__) |
Definition at line 1450 of file generic_macros_msa.h.
Referenced by common_hz_4t_12w_msa(), common_hz_4t_16w_msa(), common_hz_4t_24w_msa(), common_hz_4t_32w_msa(), common_hz_4t_4x16_msa(), common_hz_4t_4x2_msa(), common_hz_4t_4x4_msa(), common_hz_4t_4x8_msa(), common_hz_4t_6w_msa(), common_hz_4t_8x2mult_msa(), common_hz_4t_8x4mult_msa(), common_vt_4t_16w_msa(), common_vt_4t_24w_msa(), common_vt_4t_32w_mult_msa(), common_vt_4t_4x2_msa(), common_vt_4t_4x4multiple_msa(), and common_vt_4t_8x4mult_msa().
#define SPLATI_H2_SH | ( | ... | ) | SPLATI_H2(v8i16, __VA_ARGS__) |
Definition at line 1451 of file generic_macros_msa.h.
Referenced by common_vt_4t_12w_msa(), common_vt_4t_6w_msa(), common_vt_4t_8x2_msa(), common_vt_4t_8x6_msa(), hevc_hv_4t_4multx8mult_msa(), hevc_hv_4t_4x2_msa(), hevc_hv_4t_4x4_msa(), hevc_hv_4t_6w_msa(), hevc_hv_4t_8multx4mult_msa(), hevc_hv_4t_8x2_msa(), hevc_hv_4t_8x6_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_bi_4t_4x2_msa(), hevc_hv_bi_4t_4x4_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_bi_4t_8multx4mult_msa(), hevc_hv_bi_4t_8x2_msa(), hevc_hv_bi_4t_8x6_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hv_biwgt_4t_6w_msa(), hevc_hv_biwgt_4t_8multx4mult_msa(), hevc_hv_biwgt_4t_8x2_msa(), hevc_hv_biwgt_4t_8x6_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uni_4t_4x2_msa(), hevc_hv_uni_4t_4x4_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), hevc_hv_uni_4t_8x2_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_hv_uniwgt_4t_4multx8mult_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_4t_4x4_msa(), hevc_hv_uniwgt_4t_6w_msa(), hevc_hv_uniwgt_4t_8multx4mult_msa(), hevc_hv_uniwgt_4t_8x2_msa(), hevc_hv_uniwgt_4t_8x6_msa(), hevc_hz_4t_12w_msa(), hevc_hz_4t_16w_msa(), hevc_hz_4t_24w_msa(), hevc_hz_4t_32w_msa(), hevc_hz_4t_4x2_msa(), hevc_hz_4t_4x4_msa(), hevc_hz_4t_4x8multiple_msa(), hevc_hz_4t_6w_msa(), hevc_hz_4t_8x2multiple_msa(), hevc_hz_4t_8x4multiple_msa(), hevc_hz_bi_4t_12w_msa(), hevc_hz_bi_4t_16w_msa(), hevc_hz_bi_4t_24w_msa(), hevc_hz_bi_4t_32w_msa(), hevc_hz_bi_4t_4x2_msa(), hevc_hz_bi_4t_4x4_msa(), hevc_hz_bi_4t_4x8multiple_msa(), hevc_hz_bi_4t_6w_msa(), hevc_hz_bi_4t_8x2_msa(), hevc_hz_bi_4t_8x4multiple_msa(), hevc_hz_bi_4t_8x6_msa(), hevc_hz_biwgt_4t_12w_msa(), hevc_hz_biwgt_4t_16w_msa(), hevc_hz_biwgt_4t_24w_msa(), hevc_hz_biwgt_4t_32w_msa(), hevc_hz_biwgt_4t_4x2_msa(), hevc_hz_biwgt_4t_4x4_msa(), hevc_hz_biwgt_4t_4x8multiple_msa(), hevc_hz_biwgt_4t_6w_msa(), hevc_hz_biwgt_4t_8x2_msa(), hevc_hz_biwgt_4t_8x4multiple_msa(), hevc_hz_biwgt_4t_8x6_msa(), hevc_hz_uniwgt_4t_12w_msa(), hevc_hz_uniwgt_4t_16w_msa(), hevc_hz_uniwgt_4t_24w_msa(), hevc_hz_uniwgt_4t_32w_msa(), hevc_hz_uniwgt_4t_4x2_msa(), hevc_hz_uniwgt_4t_4x4_msa(), hevc_hz_uniwgt_4t_4x8multiple_msa(), hevc_hz_uniwgt_4t_6w_msa(), hevc_hz_uniwgt_4t_8x2_msa(), hevc_hz_uniwgt_4t_8x4multiple_msa(), hevc_hz_uniwgt_4t_8x6_msa(), hevc_vt_4t_12w_msa(), hevc_vt_4t_16w_msa(), hevc_vt_4t_24w_msa(), hevc_vt_4t_32w_msa(), hevc_vt_4t_4x2_msa(), hevc_vt_4t_4x4_msa(), hevc_vt_4t_4x8multiple_msa(), hevc_vt_4t_6w_msa(), hevc_vt_4t_8x2_msa(), hevc_vt_4t_8x4multiple_msa(), hevc_vt_4t_8x6_msa(), hevc_vt_bi_4t_12w_msa(), hevc_vt_bi_4t_16w_msa(), hevc_vt_bi_4t_24w_msa(), hevc_vt_bi_4t_32w_msa(), hevc_vt_bi_4t_4x2_msa(), hevc_vt_bi_4t_4x4_msa(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_4t_6w_msa(), hevc_vt_bi_4t_8x2_msa(), hevc_vt_bi_4t_8x4multiple_msa(), hevc_vt_bi_4t_8x6_msa(), hevc_vt_biwgt_4t_12w_msa(), hevc_vt_biwgt_4t_16w_msa(), hevc_vt_biwgt_4t_24w_msa(), hevc_vt_biwgt_4t_32w_msa(), hevc_vt_biwgt_4t_4x2_msa(), hevc_vt_biwgt_4t_4x4_msa(), hevc_vt_biwgt_4t_4x8multiple_msa(), hevc_vt_biwgt_4t_6w_msa(), hevc_vt_biwgt_4t_8x2_msa(), hevc_vt_biwgt_4t_8x4multiple_msa(), hevc_vt_biwgt_4t_8x6_msa(), hevc_vt_uniwgt_4t_12w_msa(), hevc_vt_uniwgt_4t_16w_msa(), hevc_vt_uniwgt_4t_24w_msa(), hevc_vt_uniwgt_4t_32w_msa(), hevc_vt_uniwgt_4t_4x2_msa(), hevc_vt_uniwgt_4t_4x4_msa(), hevc_vt_uniwgt_4t_4x8multiple_msa(), hevc_vt_uniwgt_4t_6w_msa(), hevc_vt_uniwgt_4t_8x2_msa(), hevc_vt_uniwgt_4t_8x4multiple_msa(), and hevc_vt_uniwgt_4t_8x6_msa().
#define SPLATI_H4 | ( | RTYPE, | |
in, | |||
idx0, | |||
idx1, | |||
idx2, | |||
idx3, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1453 of file generic_macros_msa.h.
#define SPLATI_H4_SB | ( | ... | ) | SPLATI_H4(v16i8, __VA_ARGS__) |
Definition at line 1459 of file generic_macros_msa.h.
Referenced by common_hz_8t_12w_msa(), common_hz_8t_16w_msa(), common_hz_8t_24w_msa(), common_hz_8t_32w_msa(), common_hz_8t_48w_msa(), common_hz_8t_4x16_msa(), common_hz_8t_4x4_msa(), common_hz_8t_4x8_msa(), common_hz_8t_64w_msa(), common_hz_8t_8x4_msa(), common_hz_8t_8x8mult_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), common_vt_8t_4w_msa(), and common_vt_8t_8w_msa().
#define SPLATI_H4_SH | ( | ... | ) | SPLATI_H4(v8i16, __VA_ARGS__) |
Definition at line 1460 of file generic_macros_msa.h.
Referenced by common_vt_8t_12w_msa(), hevc_hv_8t_4w_msa(), hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_8t_4w_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_8t_4w_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_8t_4w_msa(), hevc_hv_uniwgt_8t_8multx2mult_msa(), hevc_hz_8t_16w_msa(), hevc_hz_8t_24w_msa(), hevc_hz_8t_32w_msa(), hevc_hz_8t_48w_msa(), hevc_hz_8t_4w_msa(), hevc_hz_8t_64w_msa(), hevc_hz_8t_8w_msa(), hevc_hz_bi_8t_16w_msa(), hevc_hz_bi_8t_24w_msa(), hevc_hz_bi_8t_32w_msa(), hevc_hz_bi_8t_48w_msa(), hevc_hz_bi_8t_4w_msa(), hevc_hz_bi_8t_64w_msa(), hevc_hz_bi_8t_8w_msa(), hevc_hz_biwgt_8t_16w_msa(), hevc_hz_biwgt_8t_24w_msa(), hevc_hz_biwgt_8t_32w_msa(), hevc_hz_biwgt_8t_48w_msa(), hevc_hz_biwgt_8t_4w_msa(), hevc_hz_biwgt_8t_64w_msa(), hevc_hz_biwgt_8t_8w_msa(), hevc_hz_uniwgt_8t_16w_msa(), hevc_hz_uniwgt_8t_24w_msa(), hevc_hz_uniwgt_8t_32w_msa(), hevc_hz_uniwgt_8t_48w_msa(), hevc_hz_uniwgt_8t_4w_msa(), hevc_hz_uniwgt_8t_64w_msa(), hevc_hz_uniwgt_8t_8w_msa(), hevc_vt_8t_12w_msa(), hevc_vt_8t_16multx4mult_msa(), hevc_vt_8t_4w_msa(), hevc_vt_8t_8w_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_16multx2mult_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_bi_8t_8w_msa(), hevc_vt_biwgt_8t_12w_msa(), hevc_vt_biwgt_8t_16multx2mult_msa(), hevc_vt_biwgt_8t_4w_msa(), hevc_vt_biwgt_8t_8w_msa(), hevc_vt_uniwgt_8t_12w_msa(), hevc_vt_uniwgt_8t_16multx2mult_msa(), hevc_vt_uniwgt_8t_4w_msa(), and hevc_vt_uniwgt_8t_8w_msa().
#define SPLATI_W2 | ( | RTYPE, | |
in, | |||
stidx, | |||
out0, | |||
out1 | |||
) |
Definition at line 1473 of file generic_macros_msa.h.
#define SPLATI_W2_SH | ( | ... | ) | SPLATI_W2(v8i16, __VA_ARGS__) |
Definition at line 1478 of file generic_macros_msa.h.
#define SPLATI_W2_SW | ( | ... | ) | SPLATI_W2(v4i32, __VA_ARGS__) |
Definition at line 1479 of file generic_macros_msa.h.
Referenced by hevc_hv_4t_4multx8mult_msa(), hevc_hv_4t_4x2_msa(), hevc_hv_4t_4x4_msa(), hevc_hv_4t_6w_msa(), hevc_hv_4t_8multx4mult_msa(), hevc_hv_4t_8x2_msa(), hevc_hv_4t_8x6_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_bi_4t_4x2_msa(), hevc_hv_bi_4t_4x4_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_bi_4t_8multx4mult_msa(), hevc_hv_bi_4t_8x2_msa(), hevc_hv_bi_4t_8x6_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hv_biwgt_4t_6w_msa(), hevc_hv_biwgt_4t_8multx4mult_msa(), hevc_hv_biwgt_4t_8x2_msa(), hevc_hv_biwgt_4t_8x6_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uni_4t_4x2_msa(), hevc_hv_uni_4t_4x4_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), hevc_hv_uni_4t_8x2_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_hv_uniwgt_4t_4multx8mult_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_4t_4x4_msa(), hevc_hv_uniwgt_4t_6w_msa(), hevc_hv_uniwgt_4t_8multx4mult_msa(), hevc_hv_uniwgt_4t_8x2_msa(), and hevc_hv_uniwgt_4t_8x6_msa().
#define SPLATI_W4 | ( | RTYPE, | |
in, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1481 of file generic_macros_msa.h.
#define SPLATI_W4_SH | ( | ... | ) | SPLATI_W4(v8i16, __VA_ARGS__) |
Definition at line 1486 of file generic_macros_msa.h.
Referenced by hevc_idct_8x32_column_msa().
#define SPLATI_W4_SW | ( | ... | ) | SPLATI_W4(v4i32, __VA_ARGS__) |
Definition at line 1487 of file generic_macros_msa.h.
Referenced by hevc_hv_8t_4w_msa(), hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_8t_4w_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_8t_4w_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_8t_4w_msa(), and hevc_hv_uniwgt_8t_8multx2mult_msa().
#define PCKEV_B2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1500 of file generic_macros_msa.h.
#define PCKEV_B2_SB | ( | ... | ) | PCKEV_B2(v16i8, __VA_ARGS__) |
Definition at line 1505 of file generic_macros_msa.h.
Referenced by avc_biwgt_4x2_msa(), avc_biwgt_8width_msa(), avc_wgt_8width_msa(), hevc_hz_bi_4t_4x8multiple_msa(), hevc_hz_bi_8t_24w_msa(), hevc_hz_bi_8t_32w_msa(), and hevc_hz_bi_8t_64w_msa().
#define PCKEV_B2_UB | ( | ... | ) | PCKEV_B2(v16u8, __VA_ARGS__) |
Definition at line 1506 of file generic_macros_msa.h.
Referenced by avc_h_loop_filter_luma_mbaff_intra_msa(), avc_h_loop_filter_luma_mbaff_msa(), avc_loopfilter_cb_or_cr_inter_edge_hor_msa(), avc_loopfilter_cb_or_cr_inter_edge_ver_msa(), avc_loopfilter_luma_inter_edge_hor_msa(), and avc_loopfilter_luma_inter_edge_ver_msa().
#define PCKEV_B2_SH | ( | ... | ) | PCKEV_B2(v8i16, __VA_ARGS__) |
Definition at line 1507 of file generic_macros_msa.h.
Referenced by avc_loopfilter_cb_or_cr_intra_edge_hor_msa(), avc_loopfilter_cb_or_cr_intra_edge_ver_msa(), common_vt_4t_24w_msa(), common_vt_4t_8x6_msa(), hevc_addblk_8x8_msa(), hevc_bi_copy_12w_msa(), hevc_bi_copy_16multx4mult_msa(), hevc_bi_copy_4w_msa(), hevc_bi_copy_6w_msa(), hevc_bi_copy_8w_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_hz_bi_4t_12w_msa(), hevc_hz_bi_4t_24w_msa(), hevc_hz_bi_4t_32w_msa(), hevc_hz_bi_4t_6w_msa(), hevc_hz_bi_4t_8x4multiple_msa(), hevc_hz_bi_4t_8x6_msa(), hevc_hz_bi_8t_16w_msa(), hevc_hz_bi_8t_4w_msa(), hevc_hz_bi_8t_8w_msa(), hevc_vt_bi_4t_12w_msa(), hevc_vt_bi_4t_16w_msa(), hevc_vt_bi_4t_24w_msa(), hevc_vt_bi_4t_32w_msa(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_4t_6w_msa(), hevc_vt_bi_4t_8x4multiple_msa(), hevc_vt_bi_4t_8x6_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_16multx2mult_msa(), hevc_vt_bi_8t_4w_msa(), and hevc_vt_bi_8t_8w_msa().
#define PCKEV_B2_SW | ( | ... | ) | PCKEV_B2(v4i32, __VA_ARGS__) |
Definition at line 1508 of file generic_macros_msa.h.
Referenced by avc_wgt_4x2_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_bi_4t_8multx4mult_msa(), and hevc_hv_bi_4t_8x6_msa().
#define PCKEV_B3 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
out0, | |||
out1, | |||
out2 | |||
) |
Definition at line 1510 of file generic_macros_msa.h.
#define PCKEV_B3_UB | ( | ... | ) | PCKEV_B3(v16u8, __VA_ARGS__) |
Definition at line 1515 of file generic_macros_msa.h.
Referenced by avc_loopfilter_luma_intra_edge_hor_msa(), and avc_loopfilter_luma_intra_edge_ver_msa().
#define PCKEV_B3_SB | ( | ... | ) | PCKEV_B3(v16i8, __VA_ARGS__) |
Definition at line 1516 of file generic_macros_msa.h.
Referenced by common_vt_8t_12w_msa().
#define PCKEV_B4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1518 of file generic_macros_msa.h.
#define PCKEV_B4_SB | ( | ... | ) | PCKEV_B4(v16i8, __VA_ARGS__) |
Definition at line 1524 of file generic_macros_msa.h.
Referenced by avc_biwgt_16width_msa().
#define PCKEV_B4_UB | ( | ... | ) | PCKEV_B4(v16u8, __VA_ARGS__) |
Definition at line 1525 of file generic_macros_msa.h.
Referenced by avc_wgt_16width_msa(), common_vt_4t_16w_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), hevc_addblk_16x16_msa(), and hevc_addblk_32x32_msa().
#define PCKEV_B4_SH | ( | ... | ) | PCKEV_B4(v8i16, __VA_ARGS__) |
Definition at line 1526 of file generic_macros_msa.h.
Referenced by hevc_hz_bi_4t_16w_msa(), and hevc_hz_bi_4t_24w_msa().
#define PCKEV_B4_SW | ( | ... | ) | PCKEV_B4(v4i32, __VA_ARGS__) |
Definition at line 1527 of file generic_macros_msa.h.
#define PCKEV_H2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1540 of file generic_macros_msa.h.
#define PCKEV_H2_SH | ( | ... | ) | PCKEV_H2(v8i16, __VA_ARGS__) |
Definition at line 1545 of file generic_macros_msa.h.
Referenced by hevc_hv_bi_4t_4x4_msa(), hevc_hv_bi_4t_8x2_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hv_uni_4t_4x4_msa(), hevc_hv_uni_4t_8x2_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_idct_4x4_msa(), and hevc_idct_luma_4x4_msa().
#define PCKEV_H2_SW | ( | ... | ) | PCKEV_H2(v4i32, __VA_ARGS__) |
Definition at line 1546 of file generic_macros_msa.h.
Referenced by hevc_hv_4t_4x4_msa(), hevc_hv_4t_8x2_msa(), and hevc_hv_4t_8x6_msa().
#define PCKEV_H4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1548 of file generic_macros_msa.h.
#define PCKEV_H4_SH | ( | ... | ) | PCKEV_H4(v8i16, __VA_ARGS__) |
Definition at line 1554 of file generic_macros_msa.h.
Referenced by hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_bi_4t_8multx4mult_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_6w_msa(), hevc_hv_biwgt_4t_8multx4mult_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), and hevc_hv_uni_4t_8x6_msa().
#define PCKEV_H4_SW | ( | ... | ) | PCKEV_H4(v4i32, __VA_ARGS__) |
Definition at line 1555 of file generic_macros_msa.h.
Referenced by hevc_hv_4t_4multx8mult_msa(), hevc_hv_4t_6w_msa(), hevc_hv_4t_8multx4mult_msa(), and hevc_hv_4t_8x6_msa().
#define PCKEV_D2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1568 of file generic_macros_msa.h.
#define PCKEV_D2_UB | ( | ... | ) | PCKEV_D2(v16u8, __VA_ARGS__) |
Definition at line 1573 of file generic_macros_msa.h.
#define PCKEV_D2_SB | ( | ... | ) | PCKEV_D2(v16i8, __VA_ARGS__) |
Definition at line 1574 of file generic_macros_msa.h.
#define PCKEV_D2_SH | ( | ... | ) | PCKEV_D2(v8i16, __VA_ARGS__) |
Definition at line 1575 of file generic_macros_msa.h.
#define PCKEV_D4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1577 of file generic_macros_msa.h.
#define PCKEV_D4_UB | ( | ... | ) | PCKEV_D4(v16u8, __VA_ARGS__) |
Definition at line 1583 of file generic_macros_msa.h.
#define XORI_B2_128 | ( | RTYPE, | |
in0, | |||
in1 | |||
) |
Definition at line 1597 of file generic_macros_msa.h.
#define XORI_B2_128_UB | ( | ... | ) | XORI_B2_128(v16u8, __VA_ARGS__) |
Definition at line 1602 of file generic_macros_msa.h.
#define XORI_B2_128_SB | ( | ... | ) | XORI_B2_128(v16i8, __VA_ARGS__) |
Definition at line 1603 of file generic_macros_msa.h.
Referenced by common_hz_4t_4x2_msa(), common_hz_4t_8x2mult_msa(), common_vt_4t_24w_msa(), common_vt_4t_32w_mult_msa(), common_vt_8t_12w_msa(), common_vt_8t_4w_msa(), hevc_hv_4t_4x2_msa(), hevc_hv_4t_8x2_msa(), hevc_hv_4t_8x6_msa(), hevc_hv_8t_4w_msa(), hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_4t_4x2_msa(), hevc_hv_bi_4t_8x2_msa(), hevc_hv_bi_4t_8x6_msa(), hevc_hv_bi_8t_4w_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_4t_8x2_msa(), hevc_hv_biwgt_4t_8x6_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_4t_4x2_msa(), hevc_hv_uni_4t_8x2_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_hv_uni_8t_4w_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_4t_8x2_msa(), hevc_hv_uniwgt_4t_8x6_msa(), hevc_hv_uniwgt_8t_4w_msa(), hevc_hv_uniwgt_8t_8multx2mult_msa(), hevc_hz_4t_4x2_msa(), hevc_hz_4t_8x2multiple_msa(), hevc_hz_bi_4t_4x2_msa(), hevc_hz_bi_4t_8x2_msa(), hevc_hz_bi_8t_24w_msa(), hevc_hz_bi_8t_48w_msa(), hevc_hz_biwgt_4t_4x2_msa(), hevc_hz_biwgt_4t_8x2_msa(), hevc_hz_biwgt_8t_24w_msa(), hevc_hz_uniwgt_4t_4x2_msa(), hevc_hz_uniwgt_4t_8x2_msa(), hevc_vt_4t_12w_msa(), hevc_vt_4t_16w_msa(), hevc_vt_4t_24w_msa(), hevc_vt_4t_32w_msa(), hevc_vt_4t_4x2_msa(), hevc_vt_4t_6w_msa(), hevc_vt_4t_8x2_msa(), hevc_vt_4t_8x4multiple_msa(), hevc_vt_4t_8x6_msa(), hevc_vt_bi_4t_12w_msa(), hevc_vt_bi_4t_16w_msa(), hevc_vt_bi_4t_24w_msa(), hevc_vt_bi_4t_32w_msa(), hevc_vt_bi_4t_4x4_msa(), hevc_vt_bi_4t_6w_msa(), hevc_vt_bi_4t_8x2_msa(), hevc_vt_bi_4t_8x4multiple_msa(), hevc_vt_bi_8t_16multx2mult_msa(), hevc_vt_biwgt_4t_12w_msa(), hevc_vt_biwgt_4t_16w_msa(), hevc_vt_biwgt_4t_24w_msa(), hevc_vt_biwgt_4t_32w_msa(), hevc_vt_biwgt_4t_4x4_msa(), hevc_vt_biwgt_4t_6w_msa(), hevc_vt_biwgt_4t_8x2_msa(), hevc_vt_biwgt_4t_8x4multiple_msa(), hevc_vt_biwgt_8t_12w_msa(), hevc_vt_biwgt_8t_16multx2mult_msa(), hevc_vt_uniwgt_4t_12w_msa(), hevc_vt_uniwgt_4t_16w_msa(), hevc_vt_uniwgt_4t_24w_msa(), hevc_vt_uniwgt_4t_32w_msa(), hevc_vt_uniwgt_4t_4x4_msa(), hevc_vt_uniwgt_4t_6w_msa(), hevc_vt_uniwgt_4t_8x2_msa(), hevc_vt_uniwgt_4t_8x4multiple_msa(), and hevc_vt_uniwgt_8t_16multx2mult_msa().
#define XORI_B2_128_SH | ( | ... | ) | XORI_B2_128(v8i16, __VA_ARGS__) |
Definition at line 1604 of file generic_macros_msa.h.
Referenced by common_vt_4t_24w_msa(), and common_vt_4t_8x6_msa().
#define XORI_B3_128 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2 | |||
) |
Definition at line 1606 of file generic_macros_msa.h.
#define XORI_B3_128_SB | ( | ... | ) | XORI_B3_128(v16i8, __VA_ARGS__) |
Definition at line 1611 of file generic_macros_msa.h.
Referenced by common_vt_4t_12w_msa(), common_vt_4t_16w_msa(), common_vt_4t_24w_msa(), common_vt_4t_32w_mult_msa(), common_vt_4t_8x4mult_msa(), common_vt_4t_8x6_msa(), common_vt_8t_12w_msa(), common_vt_8t_4w_msa(), hevc_hv_4t_4multx8mult_msa(), hevc_hv_4t_4x2_msa(), hevc_hv_4t_4x4_msa(), hevc_hv_4t_6w_msa(), hevc_hv_4t_8multx4mult_msa(), hevc_hv_4t_8x2_msa(), hevc_hv_4t_8x6_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_bi_4t_4x2_msa(), hevc_hv_bi_4t_4x4_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_bi_4t_8multx4mult_msa(), hevc_hv_bi_4t_8x2_msa(), hevc_hv_bi_4t_8x6_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hv_biwgt_4t_6w_msa(), hevc_hv_biwgt_4t_8multx4mult_msa(), hevc_hv_biwgt_4t_8x2_msa(), hevc_hv_biwgt_4t_8x6_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uni_4t_4x2_msa(), hevc_hv_uni_4t_4x4_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), hevc_hv_uni_4t_8x2_msa(), hevc_hv_uni_4t_8x6_msa(), hevc_hv_uniwgt_4t_4multx8mult_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_4t_4x4_msa(), hevc_hv_uniwgt_4t_6w_msa(), hevc_hv_uniwgt_4t_8multx4mult_msa(), hevc_hv_uniwgt_4t_8x2_msa(), hevc_hv_uniwgt_4t_8x6_msa(), hevc_hz_4t_32w_msa(), hevc_hz_8t_32w_msa(), hevc_hz_bi_4t_32w_msa(), hevc_hz_bi_8t_32w_msa(), hevc_hz_bi_8t_64w_msa(), hevc_hz_biwgt_4t_32w_msa(), hevc_hz_biwgt_8t_32w_msa(), hevc_hz_biwgt_8t_64w_msa(), hevc_hz_uniwgt_4t_32w_msa(), hevc_hz_uniwgt_8t_32w_msa(), hevc_hz_uniwgt_8t_64w_msa(), hevc_vt_4t_12w_msa(), hevc_vt_4t_16w_msa(), hevc_vt_4t_24w_msa(), hevc_vt_4t_32w_msa(), hevc_vt_4t_4x4_msa(), hevc_vt_4t_4x8multiple_msa(), hevc_vt_4t_6w_msa(), hevc_vt_4t_8x2_msa(), hevc_vt_4t_8x4multiple_msa(), hevc_vt_4t_8x6_msa(), hevc_vt_8t_4w_msa(), hevc_vt_bi_4t_12w_msa(), hevc_vt_bi_4t_16w_msa(), hevc_vt_bi_4t_24w_msa(), hevc_vt_bi_4t_32w_msa(), hevc_vt_bi_4t_4x8multiple_msa(), hevc_vt_bi_4t_6w_msa(), hevc_vt_bi_4t_8x2_msa(), hevc_vt_bi_4t_8x4multiple_msa(), hevc_vt_bi_4t_8x6_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_biwgt_4t_12w_msa(), hevc_vt_biwgt_4t_16w_msa(), hevc_vt_biwgt_4t_24w_msa(), hevc_vt_biwgt_4t_32w_msa(), hevc_vt_biwgt_4t_4x8multiple_msa(), hevc_vt_biwgt_4t_6w_msa(), hevc_vt_biwgt_4t_8x2_msa(), hevc_vt_biwgt_4t_8x4multiple_msa(), hevc_vt_biwgt_4t_8x6_msa(), hevc_vt_biwgt_8t_4w_msa(), hevc_vt_uniwgt_4t_12w_msa(), hevc_vt_uniwgt_4t_16w_msa(), hevc_vt_uniwgt_4t_24w_msa(), hevc_vt_uniwgt_4t_32w_msa(), hevc_vt_uniwgt_4t_4x8multiple_msa(), hevc_vt_uniwgt_4t_6w_msa(), hevc_vt_uniwgt_4t_8x2_msa(), hevc_vt_uniwgt_4t_8x4multiple_msa(), hevc_vt_uniwgt_4t_8x6_msa(), and hevc_vt_uniwgt_8t_4w_msa().
#define XORI_B4_128 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3 | |||
) |
Definition at line 1613 of file generic_macros_msa.h.
#define XORI_B4_128_UB | ( | ... | ) | XORI_B4_128(v16u8, __VA_ARGS__) |
Definition at line 1618 of file generic_macros_msa.h.
Referenced by common_vt_4t_16w_msa(), common_vt_8t_16w_msa(), and common_vt_8t_16w_mult_msa().
#define XORI_B4_128_SB | ( | ... | ) | XORI_B4_128(v16i8, __VA_ARGS__) |
Definition at line 1619 of file generic_macros_msa.h.
Referenced by avc_biwgt_16width_msa(), avc_biwgt_4x2_msa(), avc_biwgt_4x4multiple_msa(), avc_biwgt_8width_msa(), common_hz_4t_12w_msa(), common_hz_4t_4x4_msa(), common_hz_4t_4x8_msa(), common_hz_4t_6w_msa(), common_hz_4t_8x4mult_msa(), common_hz_8t_12w_msa(), common_hz_8t_16w_msa(), common_hz_8t_24w_msa(), common_hz_8t_32w_msa(), common_hz_8t_48w_msa(), common_hz_8t_4x16_msa(), common_hz_8t_4x4_msa(), common_hz_8t_4x8_msa(), common_hz_8t_64w_msa(), common_hz_8t_8x4_msa(), common_hz_8t_8x8mult_msa(), common_vt_4t_12w_msa(), common_vt_4t_16w_msa(), common_vt_4t_8x4mult_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), common_vt_8t_8w_msa(), hevc_hv_4t_4x4_msa(), hevc_hv_4t_6w_msa(), hevc_hv_4t_8multx4mult_msa(), hevc_hv_bi_4t_4x4_msa(), hevc_hv_bi_4t_6w_msa(), hevc_hv_bi_4t_8multx4mult_msa(), hevc_hv_biwgt_4t_4x4_msa(), hevc_hv_biwgt_4t_6w_msa(), hevc_hv_biwgt_4t_8multx4mult_msa(), hevc_hv_uni_4t_4x4_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), hevc_hv_uniwgt_4t_4x4_msa(), hevc_hv_uniwgt_4t_6w_msa(), hevc_hv_uniwgt_4t_8multx4mult_msa(), hevc_hz_4t_12w_msa(), hevc_hz_4t_4x4_msa(), hevc_hz_4t_6w_msa(), hevc_hz_4t_8x4multiple_msa(), hevc_hz_8t_24w_msa(), hevc_hz_8t_48w_msa(), hevc_hz_8t_8w_msa(), hevc_hz_bi_4t_12w_msa(), hevc_hz_bi_4t_4x4_msa(), hevc_hz_bi_4t_6w_msa(), hevc_hz_bi_4t_8x4multiple_msa(), hevc_hz_bi_8t_16w_msa(), hevc_hz_bi_8t_8w_msa(), hevc_hz_biwgt_4t_12w_msa(), hevc_hz_biwgt_4t_24w_msa(), hevc_hz_biwgt_4t_4x4_msa(), hevc_hz_biwgt_4t_6w_msa(), hevc_hz_biwgt_4t_8x4multiple_msa(), hevc_hz_biwgt_8t_16w_msa(), hevc_hz_biwgt_8t_48w_msa(), hevc_hz_biwgt_8t_4w_msa(), hevc_hz_biwgt_8t_8w_msa(), hevc_hz_uniwgt_4t_12w_msa(), hevc_hz_uniwgt_4t_24w_msa(), hevc_hz_uniwgt_4t_4x4_msa(), hevc_hz_uniwgt_4t_6w_msa(), hevc_hz_uniwgt_4t_8x4multiple_msa(), hevc_hz_uniwgt_8t_16w_msa(), hevc_hz_uniwgt_8t_24w_msa(), hevc_hz_uniwgt_8t_48w_msa(), hevc_hz_uniwgt_8t_8w_msa(), hevc_vt_8t_12w_msa(), hevc_vt_8t_16multx4mult_msa(), hevc_vt_8t_4w_msa(), hevc_vt_8t_8w_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_4w_msa(), hevc_vt_bi_8t_8w_msa(), hevc_vt_biwgt_8t_4w_msa(), hevc_vt_biwgt_8t_8w_msa(), hevc_vt_uniwgt_8t_12w_msa(), hevc_vt_uniwgt_8t_4w_msa(), and hevc_vt_uniwgt_8t_8w_msa().
#define XORI_B4_128_SH | ( | ... | ) | XORI_B4_128(v8i16, __VA_ARGS__) |
Definition at line 1620 of file generic_macros_msa.h.
#define XORI_B5_128 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4 | |||
) |
Definition at line 1622 of file generic_macros_msa.h.
#define XORI_B5_128_SB | ( | ... | ) | XORI_B5_128(v16i8, __VA_ARGS__) |
Definition at line 1627 of file generic_macros_msa.h.
Referenced by common_vt_4t_8x2_msa(), and hevc_hz_8t_64w_msa().
#define XORI_B6_128 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5 | |||
) |
Definition at line 1629 of file generic_macros_msa.h.
#define XORI_B6_128_SB | ( | ... | ) | XORI_B6_128(v16i8, __VA_ARGS__) |
Definition at line 1634 of file generic_macros_msa.h.
Referenced by hevc_hz_bi_4t_8x6_msa(), hevc_hz_biwgt_4t_8x6_msa(), hevc_hz_uniwgt_4t_8x6_msa(), hevc_vt_bi_4t_8x6_msa(), hevc_vt_biwgt_4t_8x6_msa(), and hevc_vt_uniwgt_4t_8x6_msa().
#define XORI_B7_128 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6 | |||
) |
Definition at line 1636 of file generic_macros_msa.h.
#define XORI_B7_128_SB | ( | ... | ) | XORI_B7_128(v16i8, __VA_ARGS__) |
Definition at line 1641 of file generic_macros_msa.h.
Referenced by common_vt_8t_12w_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), common_vt_8t_8w_msa(), hevc_hv_8t_4w_msa(), hevc_hv_8t_8multx2mult_msa(), hevc_hv_bi_8t_4w_msa(), hevc_hv_bi_8t_8multx2mult_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_biwgt_8t_8multx2mult_msa(), hevc_hv_uni_8t_4w_msa(), hevc_hv_uni_8t_8multx2mult_msa(), hevc_hv_uniwgt_8t_4w_msa(), hevc_hv_uniwgt_8t_8multx2mult_msa(), hevc_vt_8t_12w_msa(), hevc_vt_8t_16multx4mult_msa(), hevc_vt_8t_8w_msa(), hevc_vt_bi_8t_12w_msa(), hevc_vt_bi_8t_16multx2mult_msa(), hevc_vt_bi_8t_8w_msa(), hevc_vt_biwgt_8t_12w_msa(), hevc_vt_biwgt_8t_16multx2mult_msa(), hevc_vt_biwgt_8t_8w_msa(), hevc_vt_uniwgt_8t_12w_msa(), hevc_vt_uniwgt_8t_16multx2mult_msa(), and hevc_vt_uniwgt_8t_8w_msa().
#define XORI_B8_128 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7 | |||
) |
Definition at line 1643 of file generic_macros_msa.h.
#define XORI_B8_128_SB | ( | ... | ) | XORI_B8_128(v16i8, __VA_ARGS__) |
Definition at line 1648 of file generic_macros_msa.h.
Referenced by common_hz_4t_16w_msa(), common_hz_4t_24w_msa(), common_hz_4t_32w_msa(), common_hz_4t_4x16_msa(), hevc_hv_4t_4multx8mult_msa(), hevc_hv_bi_4t_4multx8mult_msa(), hevc_hv_biwgt_4t_4multx8mult_msa(), hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uniwgt_4t_4multx8mult_msa(), hevc_hz_4t_16w_msa(), hevc_hz_4t_24w_msa(), hevc_hz_4t_4x8multiple_msa(), hevc_hz_8t_16w_msa(), hevc_hz_8t_4w_msa(), hevc_hz_bi_4t_16w_msa(), hevc_hz_bi_4t_24w_msa(), hevc_hz_bi_4t_4x8multiple_msa(), hevc_hz_bi_8t_4w_msa(), hevc_hz_biwgt_4t_16w_msa(), hevc_hz_biwgt_4t_4x8multiple_msa(), hevc_hz_uniwgt_4t_16w_msa(), hevc_hz_uniwgt_4t_4x8multiple_msa(), and hevc_hz_uniwgt_8t_4w_msa().
#define ADDS_SH2 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1659 of file generic_macros_msa.h.
#define ADDS_SH2_SH | ( | ... | ) | ADDS_SH2(v8i16, __VA_ARGS__) |
Definition at line 1664 of file generic_macros_msa.h.
Referenced by avc_wgt_4x2_msa(), common_hz_8t_24w_msa(), and common_hz_8t_48w_msa().
#define ADDS_SH4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1666 of file generic_macros_msa.h.
#define ADDS_SH4_UH | ( | ... | ) | ADDS_SH4(v8u16, __VA_ARGS__) |
Definition at line 1672 of file generic_macros_msa.h.
Referenced by avc_wgt_16width_msa(), avc_wgt_4x4multiple_msa(), and avc_wgt_8width_msa().
#define ADDS_SH4_SH | ( | ... | ) | ADDS_SH4(v8i16, __VA_ARGS__) |
Definition at line 1673 of file generic_macros_msa.h.
Referenced by common_hz_8t_24w_msa().
#define SLLI_4V | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
shift | |||
) |
Definition at line 1683 of file generic_macros_msa.h.
Referenced by hevc_bi_copy_12w_msa(), hevc_bi_copy_16multx4mult_msa(), hevc_bi_copy_4w_msa(), hevc_bi_copy_6w_msa(), hevc_bi_copy_8w_msa(), hevc_biwgt_copy_12w_msa(), hevc_biwgt_copy_16multx4mult_msa(), hevc_biwgt_copy_4w_msa(), hevc_biwgt_copy_6w_msa(), hevc_biwgt_copy_8w_msa(), hevc_copy_12w_msa(), hevc_copy_16multx8mult_msa(), hevc_copy_16w_msa(), hevc_copy_4w_msa(), hevc_copy_6w_msa(), hevc_copy_8w_msa(), hevc_uniwgt_copy_12w_msa(), hevc_uniwgt_copy_16multx4mult_msa(), hevc_uniwgt_copy_4w_msa(), hevc_uniwgt_copy_6w_msa(), and hevc_uniwgt_copy_8w_msa().
#define SRA_4V | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
shift | |||
) |
Definition at line 1701 of file generic_macros_msa.h.
Referenced by avc_biwgt_16width_msa(), avc_biwgt_4x4multiple_msa(), and avc_biwgt_8width_msa().
#define SRL_H4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
shift | |||
) |
#define SRL_H4_UH | ( | ... | ) | SRL_H4(v8u16, __VA_ARGS__) |
Definition at line 1726 of file generic_macros_msa.h.
Referenced by avc_wgt_16width_msa(), avc_wgt_4x4multiple_msa(), and avc_wgt_8width_msa().
#define SRAR_H2 | ( | RTYPE, | |
in0, | |||
in1, | |||
shift | |||
) |
Definition at line 1739 of file generic_macros_msa.h.
#define SRAR_H2_UH | ( | ... | ) | SRAR_H2(v8u16, __VA_ARGS__) |
Definition at line 1744 of file generic_macros_msa.h.
#define SRAR_H2_SH | ( | ... | ) | SRAR_H2(v8i16, __VA_ARGS__) |
Definition at line 1745 of file generic_macros_msa.h.
Referenced by common_hz_4t_12w_msa(), common_hz_4t_4x4_msa(), common_hz_4t_8x2mult_msa(), common_hz_8t_12w_msa(), common_hz_8t_24w_msa(), common_hz_8t_48w_msa(), common_hz_8t_4x4_msa(), common_vt_4t_12w_msa(), common_vt_4t_24w_msa(), common_vt_4t_4x4multiple_msa(), common_vt_4t_8x2_msa(), and common_vt_8t_4w_msa().
#define SRAR_H3 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
shift | |||
) |
Definition at line 1747 of file generic_macros_msa.h.
#define SRAR_H3_SH | ( | ... | ) | SRAR_H3(v8i16, __VA_ARGS__) |
Definition at line 1752 of file generic_macros_msa.h.
Referenced by common_hz_8t_48w_msa(), common_vt_4t_8x6_msa(), and common_vt_8t_12w_msa().
#define SRAR_H4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
shift | |||
) |
Definition at line 1754 of file generic_macros_msa.h.
#define SRAR_H4_UH | ( | ... | ) | SRAR_H4(v8u16, __VA_ARGS__) |
Definition at line 1759 of file generic_macros_msa.h.
#define SRAR_H4_SH | ( | ... | ) | SRAR_H4(v8i16, __VA_ARGS__) |
Definition at line 1760 of file generic_macros_msa.h.
Referenced by common_hz_4t_12w_msa(), common_hz_4t_16w_msa(), common_hz_4t_24w_msa(), common_hz_4t_32w_msa(), common_hz_4t_4x16_msa(), common_hz_4t_4x8_msa(), common_hz_4t_6w_msa(), common_hz_4t_8x4mult_msa(), common_hz_8t_12w_msa(), common_hz_8t_16w_msa(), common_hz_8t_24w_msa(), common_hz_8t_32w_msa(), common_hz_8t_4x16_msa(), common_hz_8t_4x8_msa(), common_hz_8t_64w_msa(), common_hz_8t_8x4_msa(), common_hz_8t_8x8mult_msa(), common_vt_4t_12w_msa(), common_vt_4t_16w_msa(), common_vt_4t_24w_msa(), common_vt_4t_32w_mult_msa(), common_vt_4t_6w_msa(), common_vt_4t_8x4mult_msa(), common_vt_8t_16w_msa(), common_vt_8t_16w_mult_msa(), and common_vt_8t_8w_msa().
#define SRAR_W2 | ( | RTYPE, | |
in0, | |||
in1, | |||
shift | |||
) |
Definition at line 1773 of file generic_macros_msa.h.
#define SRAR_W2_SW | ( | ... | ) | SRAR_W2(v4i32, __VA_ARGS__) |
Definition at line 1778 of file generic_macros_msa.h.
Referenced by hevc_biwgt_copy_4w_msa(), hevc_hv_biwgt_4t_4x2_msa(), hevc_hv_biwgt_8t_4w_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_8t_4w_msa(), hevc_hz_biwgt_4t_4x2_msa(), hevc_hz_biwgt_8t_24w_msa(), hevc_hz_biwgt_8t_48w_msa(), hevc_hz_uniwgt_4t_4x2_msa(), hevc_idct_8x32_column_msa(), hevc_uniwgt_copy_4w_msa(), hevc_vt_biwgt_4t_4x2_msa(), hevc_vt_biwgt_8t_12w_msa(), and hevc_vt_uniwgt_4t_4x2_msa().
#define SRAR_W4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
shift | |||
) |
Definition at line 1780 of file generic_macros_msa.h.
#define SRAR_W4_SW | ( | ... | ) | SRAR_W4(v4i32, __VA_ARGS__) |
Definition at line 1785 of file generic_macros_msa.h.
Referenced by hevc_hv_biwgt_8t_8multx2mult_msa().
#define SRARI_H2 | ( | RTYPE, | |
in0, | |||
in1, | |||
shift | |||
) |
Definition at line 1797 of file generic_macros_msa.h.
#define SRARI_H2_UH | ( | ... | ) | SRARI_H2(v8u16, __VA_ARGS__) |
Definition at line 1802 of file generic_macros_msa.h.
#define SRARI_H2_SH | ( | ... | ) | SRARI_H2(v8i16, __VA_ARGS__) |
Definition at line 1803 of file generic_macros_msa.h.
Referenced by hevc_hv_uni_4t_4x4_msa(), hevc_hv_uni_4t_8x2_msa(), and hevc_hv_uni_4t_8x6_msa().
#define SRARI_H4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
shift | |||
) |
Definition at line 1805 of file generic_macros_msa.h.
#define SRARI_H4_UH | ( | ... | ) | SRARI_H4(v8u16, __VA_ARGS__) |
Definition at line 1810 of file generic_macros_msa.h.
#define SRARI_H4_SH | ( | ... | ) | SRARI_H4(v8i16, __VA_ARGS__) |
Definition at line 1811 of file generic_macros_msa.h.
Referenced by hevc_hv_uni_4t_4multx8mult_msa(), hevc_hv_uni_4t_6w_msa(), hevc_hv_uni_4t_8w_mult_msa(), and hevc_hv_uni_4t_8x6_msa().
#define SRARI_W2 | ( | RTYPE, | |
in0, | |||
in1, | |||
shift | |||
) |
Definition at line 1823 of file generic_macros_msa.h.
#define SRARI_W2_SW | ( | ... | ) | SRARI_W2(v4i32, __VA_ARGS__) |
Definition at line 1828 of file generic_macros_msa.h.
Referenced by hevc_hv_bi_8t_4w_msa(), and hevc_hv_uni_8t_4w_msa().
#define SRARI_W4 | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
shift | |||
) |
Definition at line 1830 of file generic_macros_msa.h.
#define SRARI_W4_SH | ( | ... | ) | SRARI_W4(v8i16, __VA_ARGS__) |
Definition at line 1835 of file generic_macros_msa.h.
#define SRARI_W4_SW | ( | ... | ) | SRARI_W4(v4i32, __VA_ARGS__) |
Definition at line 1836 of file generic_macros_msa.h.
Referenced by hevc_hv_bi_8t_8multx2mult_msa(), and hevc_hv_uni_8t_8multx2mult_msa().
#define MUL2 | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1845 of file generic_macros_msa.h.
Referenced by avc_wgt_4x2_msa(), hevc_hv_uniwgt_4t_4x2_msa(), and hevc_hv_uniwgt_8t_4w_msa().
#define MUL4 | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1850 of file generic_macros_msa.h.
Referenced by avc_wgt_16width_msa(), avc_wgt_4x4multiple_msa(), and avc_wgt_8width_msa().
#define ADD2 | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1 | |||
) |
Definition at line 1862 of file generic_macros_msa.h.
Referenced by hevc_addblk_4x4_msa(), hevc_hv_uniwgt_4t_4x2_msa(), hevc_hv_uniwgt_8t_4w_msa(), hevc_hz_uniwgt_4t_4x2_msa(), hevc_uniwgt_copy_4w_msa(), and hevc_vt_uniwgt_4t_4x2_msa().
#define ADD4 | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1867 of file generic_macros_msa.h.
Referenced by hevc_addblk_8x8_msa().
#define UNPCK_UB_SH | ( | in, | |
out0, | |||
out1 | |||
) |
Definition at line 1880 of file generic_macros_msa.h.
Referenced by avc_loopfilter_luma_inter_edge_hor_msa(), avc_loopfilter_luma_inter_edge_ver_msa(), avc_loopfilter_luma_intra_edge_hor_msa(), avc_loopfilter_luma_intra_edge_ver_msa(), hevc_addblk_16x16_msa(), hevc_addblk_32x32_msa(), and hevc_addblk_8x8_msa().
#define UNPCK_SH_SW | ( | in, | |
out0, | |||
out1 | |||
) |
Definition at line 1898 of file generic_macros_msa.h.
Referenced by hevc_hv_bi_8t_4w_msa(), hevc_hv_bi_8t_8multx2mult_msa(), and hevc_idct_luma_4x4_msa().
#define BUTTERFLY_4 | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1911 of file generic_macros_msa.h.
#define TRANSPOSE4x4_UB_UB | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1926 of file generic_macros_msa.h.
#define TRANSPOSE8x4_UB | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 1946 of file generic_macros_msa.h.
#define TRANSPOSE8x4_UB_UB | ( | ... | ) | TRANSPOSE8x4_UB(v16u8, __VA_ARGS__) |
Definition at line 1963 of file generic_macros_msa.h.
Referenced by avc_loopfilter_cb_or_cr_inter_edge_ver_msa(), and avc_loopfilter_cb_or_cr_intra_edge_ver_msa().
#define TRANSPOSE16x8_UB_UB | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
in8, | |||
in9, | |||
in10, | |||
in11, | |||
in12, | |||
in13, | |||
in14, | |||
in15, | |||
out0, | |||
out1, | |||
out2, | |||
out3, | |||
out4, | |||
out5, | |||
out6, | |||
out7 | |||
) |
Definition at line 1972 of file generic_macros_msa.h.
Referenced by avc_loopfilter_luma_inter_edge_ver_msa(), and avc_loopfilter_luma_intra_edge_ver_msa().
#define TRANSPOSE8x8_H | ( | RTYPE, | |
in0, | |||
in1, | |||
in2, | |||
in3, | |||
in4, | |||
in5, | |||
in6, | |||
in7, | |||
out0, | |||
out1, | |||
out2, | |||
out3, | |||
out4, | |||
out5, | |||
out6, | |||
out7 | |||
) |
Definition at line 2020 of file generic_macros_msa.h.
#define TRANSPOSE8x8_UH_UH | ( | ... | ) | TRANSPOSE8x8_H(v8u16, __VA_ARGS__) |
Definition at line 2042 of file generic_macros_msa.h.
#define TRANSPOSE8x8_SH_SH | ( | ... | ) | TRANSPOSE8x8_H(v8i16, __VA_ARGS__) |
Definition at line 2043 of file generic_macros_msa.h.
Referenced by hevc_idct_16x16_msa(), hevc_idct_8x8_msa(), hevc_idct_transpose_32x8_to_8x32(), and hevc_idct_transpose_8x32_to_32x8().
#define TRANSPOSE4x4_SW_SW | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
out0, | |||
out1, | |||
out2, | |||
out3 | |||
) |
Definition at line 2051 of file generic_macros_msa.h.
Referenced by hevc_idct_4x4_msa(), and hevc_idct_luma_4x4_msa().
#define PCKEV_XORI128_UB | ( | in0, | |
in1 | |||
) |
Definition at line 2072 of file generic_macros_msa.h.
Referenced by common_hz_4t_12w_msa(), common_hz_4t_16w_msa(), common_hz_4t_24w_msa(), common_hz_4t_32w_msa(), common_hz_4t_4x16_msa(), common_hz_4t_4x2_msa(), common_hz_4t_4x4_msa(), common_hz_4t_4x8_msa(), common_hz_4t_6w_msa(), common_hz_4t_8x2mult_msa(), common_hz_4t_8x4mult_msa(), common_hz_8t_12w_msa(), common_hz_8t_16w_msa(), common_hz_8t_24w_msa(), common_hz_8t_32w_msa(), common_hz_8t_48w_msa(), common_hz_8t_4x16_msa(), common_hz_8t_4x4_msa(), common_hz_8t_4x8_msa(), common_hz_8t_64w_msa(), common_hz_8t_8x4_msa(), common_hz_8t_8x8mult_msa(), common_vt_4t_12w_msa(), common_vt_4t_24w_msa(), common_vt_4t_32w_mult_msa(), common_vt_4t_4x2_msa(), common_vt_4t_4x4multiple_msa(), common_vt_4t_6w_msa(), common_vt_4t_8x2_msa(), common_vt_4t_8x4mult_msa(), common_vt_8t_4w_msa(), and common_vt_8t_8w_msa().
#define PCKEV_ST4x4_UB | ( | in0, | |
in1, | |||
in2, | |||
in3, | |||
pdst, | |||
stride | |||
) |
Definition at line 2085 of file generic_macros_msa.h.
Referenced by avc_biwgt_4x4multiple_msa(), and avc_wgt_4x4multiple_msa().