Lines Matching refs:idct
199 void (*idct)(uint8_t *, int16_t *, int) = NULL; in check_idct() local
201 case (4 << 1) | 0: idct = h.h264_idct_add; break; in check_idct()
202 case (4 << 1) | 1: idct = h.h264_idct_dc_add; break; in check_idct()
203 case (8 << 1) | 0: idct = h.h264_idct8_add; break; in check_idct()
204 case (8 << 1) | 1: idct = h.h264_idct8_dc_add; break; in check_idct()
206 if (check_func(idct, "h264_idct%d_add%s_%dbpp", sz, dc ? "_dc" : "", bit_depth)) { in check_idct()
247 void (*idct)(uint8_t *, const int *, int16_t *, int, const uint8_t[]) = NULL; in check_idct_multiple() local
253 idct = h.h264_idct_add16; in check_idct_multiple()
257 idct = h.h264_idct_add16intra; in check_idct_multiple()
262 idct = h.h264_idct8_add4; in check_idct_multiple()
301 if (check_func(idct, "%s_%dbpp", name, bit_depth)) { in check_idct_multiple()