SIZE              439 libavcodec/cavsdsp.c #define CAVS_MC(OPNAME, SIZE) \
SIZE              440 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc10_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              442 libavcodec/cavsdsp.c     OPNAME ## cavs_filt ## SIZE ## _h_qpel_l(dst, src, stride, stride);\
SIZE              445 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc20_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              447 libavcodec/cavsdsp.c     OPNAME ## cavs_filt ## SIZE ## _h_hpel(dst, src, stride, stride);\
SIZE              450 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc30_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              452 libavcodec/cavsdsp.c     OPNAME ## cavs_filt ## SIZE ## _h_qpel_r(dst, src, stride, stride);\
SIZE              455 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc01_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              457 libavcodec/cavsdsp.c     OPNAME ## cavs_filt ## SIZE ## _v_qpel_l(dst, src, stride, stride);\
SIZE              460 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc02_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              462 libavcodec/cavsdsp.c     OPNAME ## cavs_filt ## SIZE ## _v_hpel(dst, src, stride, stride);\
SIZE              465 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc03_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              467 libavcodec/cavsdsp.c     OPNAME ## cavs_filt ## SIZE ## _v_qpel_r(dst, src, stride, stride);\
SIZE              470 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc22_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              472 libavcodec/cavsdsp.c   OPNAME ## cavs_filt ## SIZE ## _hv_jj(dst, src, NULL, stride, stride); \
SIZE              475 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc11_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              477 libavcodec/cavsdsp.c   OPNAME ## cavs_filt ## SIZE ## _hv_egpr(dst, src, src, stride, stride); \
SIZE              480 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc13_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              482 libavcodec/cavsdsp.c   OPNAME ## cavs_filt ## SIZE ## _hv_egpr(dst, src, src+stride, stride, stride); \
SIZE              485 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc31_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              487 libavcodec/cavsdsp.c   OPNAME ## cavs_filt ## SIZE ## _hv_egpr(dst, src, src+1, stride, stride); \
SIZE              490 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc33_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              492 libavcodec/cavsdsp.c   OPNAME ## cavs_filt ## SIZE ## _hv_egpr(dst, src, src+stride+1,stride, stride); \
SIZE              495 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc21_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              497 libavcodec/cavsdsp.c   OPNAME ## cavs_filt ## SIZE ## _hv_ff(dst, src, src+stride+1,stride, stride); \
SIZE              500 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc12_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              502 libavcodec/cavsdsp.c   OPNAME ## cavs_filt ## SIZE ## _hv_ii(dst, src, src+stride+1,stride, stride); \
SIZE              505 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc32_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              507 libavcodec/cavsdsp.c   OPNAME ## cavs_filt ## SIZE ## _hv_kk(dst, src, src+stride+1,stride, stride); \
SIZE              510 libavcodec/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc23_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              512 libavcodec/cavsdsp.c   OPNAME ## cavs_filt ## SIZE ## _hv_qq(dst, src, src+stride+1,stride, stride); \
SIZE              380 libavcodec/h264qpel_template.c #define H264_MC(OPNAME, SIZE) \
SIZE              381 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc00)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              383 libavcodec/h264qpel_template.c     FUNCC(OPNAME ## pixels ## SIZE)(dst, src, stride, SIZE);\
SIZE              386 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc10)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              388 libavcodec/h264qpel_template.c     uint8_t half[SIZE*SIZE*sizeof(pixel)];\
SIZE              389 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _h_lowpass)(half, src, SIZE*sizeof(pixel), stride);\
SIZE              390 libavcodec/h264qpel_template.c     FUNC(OPNAME ## pixels ## SIZE ## _l2)(dst, src, half, stride, stride, SIZE*sizeof(pixel), SIZE);\
SIZE              393 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc20)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              395 libavcodec/h264qpel_template.c     FUNC(OPNAME ## h264_qpel ## SIZE ## _h_lowpass)(dst, src, stride, stride);\
SIZE              398 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc30)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              400 libavcodec/h264qpel_template.c     uint8_t half[SIZE*SIZE*sizeof(pixel)];\
SIZE              401 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _h_lowpass)(half, src, SIZE*sizeof(pixel), stride);\
SIZE              402 libavcodec/h264qpel_template.c     FUNC(OPNAME ## pixels ## SIZE ## _l2)(dst, src+sizeof(pixel), half, stride, stride, SIZE*sizeof(pixel), SIZE);\
SIZE              405 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc01)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              407 libavcodec/h264qpel_template.c     uint8_t full[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              408 libavcodec/h264qpel_template.c     uint8_t * const full_mid= full + SIZE*2*sizeof(pixel);\
SIZE              409 libavcodec/h264qpel_template.c     uint8_t half[SIZE*SIZE*sizeof(pixel)];\
SIZE              410 libavcodec/h264qpel_template.c     FUNC(copy_block ## SIZE )(full, src - stride*2, SIZE*sizeof(pixel),  stride, SIZE + 5);\
SIZE              411 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _v_lowpass)(half, full_mid, SIZE*sizeof(pixel), SIZE*sizeof(pixel));\
SIZE              412 libavcodec/h264qpel_template.c     FUNC(OPNAME ## pixels ## SIZE ## _l2)(dst, full_mid, half, stride, SIZE*sizeof(pixel), SIZE*sizeof(pixel), SIZE);\
SIZE              415 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc02)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              417 libavcodec/h264qpel_template.c     uint8_t full[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              418 libavcodec/h264qpel_template.c     uint8_t * const full_mid= full + SIZE*2*sizeof(pixel);\
SIZE              419 libavcodec/h264qpel_template.c     FUNC(copy_block ## SIZE )(full, src - stride*2, SIZE*sizeof(pixel),  stride, SIZE + 5);\
SIZE              420 libavcodec/h264qpel_template.c     FUNC(OPNAME ## h264_qpel ## SIZE ## _v_lowpass)(dst, full_mid, stride, SIZE*sizeof(pixel));\
SIZE              423 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc03)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              425 libavcodec/h264qpel_template.c     uint8_t full[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              426 libavcodec/h264qpel_template.c     uint8_t * const full_mid= full + SIZE*2*sizeof(pixel);\
SIZE              427 libavcodec/h264qpel_template.c     uint8_t half[SIZE*SIZE*sizeof(pixel)];\
SIZE              428 libavcodec/h264qpel_template.c     FUNC(copy_block ## SIZE )(full, src - stride*2, SIZE*sizeof(pixel),  stride, SIZE + 5);\
SIZE              429 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _v_lowpass)(half, full_mid, SIZE*sizeof(pixel), SIZE*sizeof(pixel));\
SIZE              430 libavcodec/h264qpel_template.c     FUNC(OPNAME ## pixels ## SIZE ## _l2)(dst, full_mid+SIZE*sizeof(pixel), half, stride, SIZE*sizeof(pixel), SIZE*sizeof(pixel), SIZE);\
SIZE              433 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc11)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              435 libavcodec/h264qpel_template.c     uint8_t full[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              436 libavcodec/h264qpel_template.c     uint8_t * const full_mid= full + SIZE*2*sizeof(pixel);\
SIZE              437 libavcodec/h264qpel_template.c     uint8_t halfH[SIZE*SIZE*sizeof(pixel)];\
SIZE              438 libavcodec/h264qpel_template.c     uint8_t halfV[SIZE*SIZE*sizeof(pixel)];\
SIZE              439 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _h_lowpass)(halfH, src, SIZE*sizeof(pixel), stride);\
SIZE              440 libavcodec/h264qpel_template.c     FUNC(copy_block ## SIZE )(full, src - stride*2, SIZE*sizeof(pixel),  stride, SIZE + 5);\
SIZE              441 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _v_lowpass)(halfV, full_mid, SIZE*sizeof(pixel), SIZE*sizeof(pixel));\
SIZE              442 libavcodec/h264qpel_template.c     FUNC(OPNAME ## pixels ## SIZE ## _l2)(dst, halfH, halfV, stride, SIZE*sizeof(pixel), SIZE*sizeof(pixel), SIZE);\
SIZE              445 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc31)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              447 libavcodec/h264qpel_template.c     uint8_t full[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              448 libavcodec/h264qpel_template.c     uint8_t * const full_mid= full + SIZE*2*sizeof(pixel);\
SIZE              449 libavcodec/h264qpel_template.c     uint8_t halfH[SIZE*SIZE*sizeof(pixel)];\
SIZE              450 libavcodec/h264qpel_template.c     uint8_t halfV[SIZE*SIZE*sizeof(pixel)];\
SIZE              451 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _h_lowpass)(halfH, src, SIZE*sizeof(pixel), stride);\
SIZE              452 libavcodec/h264qpel_template.c     FUNC(copy_block ## SIZE )(full, src - stride*2 + sizeof(pixel), SIZE*sizeof(pixel),  stride, SIZE + 5);\
SIZE              453 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _v_lowpass)(halfV, full_mid, SIZE*sizeof(pixel), SIZE*sizeof(pixel));\
SIZE              454 libavcodec/h264qpel_template.c     FUNC(OPNAME ## pixels ## SIZE ## _l2)(dst, halfH, halfV, stride, SIZE*sizeof(pixel), SIZE*sizeof(pixel), SIZE);\
SIZE              457 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc13)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              459 libavcodec/h264qpel_template.c     uint8_t full[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              460 libavcodec/h264qpel_template.c     uint8_t * const full_mid= full + SIZE*2*sizeof(pixel);\
SIZE              461 libavcodec/h264qpel_template.c     uint8_t halfH[SIZE*SIZE*sizeof(pixel)];\
SIZE              462 libavcodec/h264qpel_template.c     uint8_t halfV[SIZE*SIZE*sizeof(pixel)];\
SIZE              463 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _h_lowpass)(halfH, src + stride, SIZE*sizeof(pixel), stride);\
SIZE              464 libavcodec/h264qpel_template.c     FUNC(copy_block ## SIZE )(full, src - stride*2, SIZE*sizeof(pixel),  stride, SIZE + 5);\
SIZE              465 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _v_lowpass)(halfV, full_mid, SIZE*sizeof(pixel), SIZE*sizeof(pixel));\
SIZE              466 libavcodec/h264qpel_template.c     FUNC(OPNAME ## pixels ## SIZE ## _l2)(dst, halfH, halfV, stride, SIZE*sizeof(pixel), SIZE*sizeof(pixel), SIZE);\
SIZE              469 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc33)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              471 libavcodec/h264qpel_template.c     uint8_t full[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              472 libavcodec/h264qpel_template.c     uint8_t * const full_mid= full + SIZE*2*sizeof(pixel);\
SIZE              473 libavcodec/h264qpel_template.c     uint8_t halfH[SIZE*SIZE*sizeof(pixel)];\
SIZE              474 libavcodec/h264qpel_template.c     uint8_t halfV[SIZE*SIZE*sizeof(pixel)];\
SIZE              475 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _h_lowpass)(halfH, src + stride, SIZE*sizeof(pixel), stride);\
SIZE              476 libavcodec/h264qpel_template.c     FUNC(copy_block ## SIZE )(full, src - stride*2 + sizeof(pixel), SIZE*sizeof(pixel),  stride, SIZE + 5);\
SIZE              477 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _v_lowpass)(halfV, full_mid, SIZE*sizeof(pixel), SIZE*sizeof(pixel));\
SIZE              478 libavcodec/h264qpel_template.c     FUNC(OPNAME ## pixels ## SIZE ## _l2)(dst, halfH, halfV, stride, SIZE*sizeof(pixel), SIZE*sizeof(pixel), SIZE);\
SIZE              481 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc22)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              483 libavcodec/h264qpel_template.c     pixeltmp tmp[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              484 libavcodec/h264qpel_template.c     FUNC(OPNAME ## h264_qpel ## SIZE ## _hv_lowpass)(dst, tmp, src, stride, SIZE*sizeof(pixel), stride);\
SIZE              487 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc21)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              489 libavcodec/h264qpel_template.c     pixeltmp tmp[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              490 libavcodec/h264qpel_template.c     uint8_t halfH[SIZE*SIZE*sizeof(pixel)];\
SIZE              491 libavcodec/h264qpel_template.c     uint8_t halfHV[SIZE*SIZE*sizeof(pixel)];\
SIZE              492 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _h_lowpass)(halfH, src, SIZE*sizeof(pixel), stride);\
SIZE              493 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _hv_lowpass)(halfHV, tmp, src, SIZE*sizeof(pixel), SIZE*sizeof(pixel), stride);\
SIZE              494 libavcodec/h264qpel_template.c     FUNC(OPNAME ## pixels ## SIZE ## _l2)(dst, halfH, halfHV, stride, SIZE*sizeof(pixel), SIZE*sizeof(pixel), SIZE);\
SIZE              497 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc23)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              499 libavcodec/h264qpel_template.c     pixeltmp tmp[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              500 libavcodec/h264qpel_template.c     uint8_t halfH[SIZE*SIZE*sizeof(pixel)];\
SIZE              501 libavcodec/h264qpel_template.c     uint8_t halfHV[SIZE*SIZE*sizeof(pixel)];\
SIZE              502 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _h_lowpass)(halfH, src + stride, SIZE*sizeof(pixel), stride);\
SIZE              503 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _hv_lowpass)(halfHV, tmp, src, SIZE*sizeof(pixel), SIZE*sizeof(pixel), stride);\
SIZE              504 libavcodec/h264qpel_template.c     FUNC(OPNAME ## pixels ## SIZE ## _l2)(dst, halfH, halfHV, stride, SIZE*sizeof(pixel), SIZE*sizeof(pixel), SIZE);\
SIZE              507 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc12)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              509 libavcodec/h264qpel_template.c     uint8_t full[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              510 libavcodec/h264qpel_template.c     uint8_t * const full_mid= full + SIZE*2*sizeof(pixel);\
SIZE              511 libavcodec/h264qpel_template.c     pixeltmp tmp[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              512 libavcodec/h264qpel_template.c     uint8_t halfV[SIZE*SIZE*sizeof(pixel)];\
SIZE              513 libavcodec/h264qpel_template.c     uint8_t halfHV[SIZE*SIZE*sizeof(pixel)];\
SIZE              514 libavcodec/h264qpel_template.c     FUNC(copy_block ## SIZE )(full, src - stride*2, SIZE*sizeof(pixel),  stride, SIZE + 5);\
SIZE              515 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _v_lowpass)(halfV, full_mid, SIZE*sizeof(pixel), SIZE*sizeof(pixel));\
SIZE              516 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _hv_lowpass)(halfHV, tmp, src, SIZE*sizeof(pixel), SIZE*sizeof(pixel), stride);\
SIZE              517 libavcodec/h264qpel_template.c     FUNC(OPNAME ## pixels ## SIZE ## _l2)(dst, halfV, halfHV, stride, SIZE*sizeof(pixel), SIZE*sizeof(pixel), SIZE);\
SIZE              520 libavcodec/h264qpel_template.c static void FUNCC(OPNAME ## h264_qpel ## SIZE ## _mc32)(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              522 libavcodec/h264qpel_template.c     uint8_t full[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              523 libavcodec/h264qpel_template.c     uint8_t * const full_mid= full + SIZE*2*sizeof(pixel);\
SIZE              524 libavcodec/h264qpel_template.c     pixeltmp tmp[SIZE*(SIZE+5)*sizeof(pixel)];\
SIZE              525 libavcodec/h264qpel_template.c     uint8_t halfV[SIZE*SIZE*sizeof(pixel)];\
SIZE              526 libavcodec/h264qpel_template.c     uint8_t halfHV[SIZE*SIZE*sizeof(pixel)];\
SIZE              527 libavcodec/h264qpel_template.c     FUNC(copy_block ## SIZE )(full, src - stride*2 + sizeof(pixel), SIZE*sizeof(pixel),  stride, SIZE + 5);\
SIZE              528 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _v_lowpass)(halfV, full_mid, SIZE*sizeof(pixel), SIZE*sizeof(pixel));\
SIZE              529 libavcodec/h264qpel_template.c     FUNC(put_h264_qpel ## SIZE ## _hv_lowpass)(halfHV, tmp, src, SIZE*sizeof(pixel), SIZE*sizeof(pixel), stride);\
SIZE              530 libavcodec/h264qpel_template.c     FUNC(OPNAME ## pixels ## SIZE ## _l2)(dst, halfV, halfHV, stride, SIZE*sizeof(pixel), SIZE*sizeof(pixel), SIZE);\
SIZE               32 libavcodec/mips/vp8dsp_init_mips.c #define VP8_MC_MIPS_FUNC(IDX, SIZE)            \
SIZE               34 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_epel##SIZE##_h4_msa;        \
SIZE               36 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_epel##SIZE##_h6_msa;        \
SIZE               38 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_epel##SIZE##_v4_msa;        \
SIZE               40 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_epel##SIZE##_h4v4_msa;      \
SIZE               42 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_epel##SIZE##_h6v4_msa;      \
SIZE               44 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_epel##SIZE##_v6_msa;        \
SIZE               46 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_epel##SIZE##_h4v6_msa;      \
SIZE               48 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_epel##SIZE##_h6v6_msa
SIZE               50 libavcodec/mips/vp8dsp_init_mips.c #define VP8_BILINEAR_MC_MIPS_FUNC(IDX, SIZE)       \
SIZE               52 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_bilinear##SIZE##_h_msa;         \
SIZE               54 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_bilinear##SIZE##_h_msa;         \
SIZE               56 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_bilinear##SIZE##_v_msa;         \
SIZE               58 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_bilinear##SIZE##_hv_msa;        \
SIZE               60 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_bilinear##SIZE##_hv_msa;        \
SIZE               62 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_bilinear##SIZE##_v_msa;         \
SIZE               64 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_bilinear##SIZE##_hv_msa;        \
SIZE               66 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_bilinear##SIZE##_hv_msa
SIZE               68 libavcodec/mips/vp8dsp_init_mips.c #define VP8_MC_MIPS_COPY(IDX, SIZE)                \
SIZE               70 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_pixels##SIZE##_msa;             \
SIZE               72 libavcodec/mips/vp8dsp_init_mips.c         ff_put_vp8_pixels##SIZE##_msa;
SIZE              535 libavcodec/mips/vp9_mc_mmi.c #define VP9_8TAP_MIPS_MMI_FUNC(SIZE, TYPE, TYPE_IDX)                           \
SIZE              536 libavcodec/mips/vp9_mc_mmi.c void ff_put_8tap_##TYPE##_##SIZE##h_mmi(uint8_t *dst, ptrdiff_t dststride,     \
SIZE              543 libavcodec/mips/vp9_mc_mmi.c     convolve_horiz_mmi(src, srcstride, dst, dststride, filter, SIZE, h);       \
SIZE              546 libavcodec/mips/vp9_mc_mmi.c void ff_put_8tap_##TYPE##_##SIZE##v_mmi(uint8_t *dst, ptrdiff_t dststride,     \
SIZE              554 libavcodec/mips/vp9_mc_mmi.c     convolve_vert_mmi(src, srcstride, dst, dststride, filter, SIZE, h);        \
SIZE              557 libavcodec/mips/vp9_mc_mmi.c void ff_put_8tap_##TYPE##_##SIZE##hv_mmi(uint8_t *dst, ptrdiff_t dststride,    \
SIZE              568 libavcodec/mips/vp9_mc_mmi.c     convolve_horiz_mmi(src, srcstride, temp, 64, hfilter, SIZE, tmp_h);        \
SIZE              569 libavcodec/mips/vp9_mc_mmi.c     convolve_vert_mmi(temp, 64, dst, dststride, vfilter, SIZE, h);             \
SIZE              572 libavcodec/mips/vp9_mc_mmi.c void ff_avg_8tap_##TYPE##_##SIZE##h_mmi(uint8_t *dst, ptrdiff_t dststride,     \
SIZE              579 libavcodec/mips/vp9_mc_mmi.c     convolve_avg_horiz_mmi(src, srcstride, dst, dststride, filter, SIZE, h);   \
SIZE              582 libavcodec/mips/vp9_mc_mmi.c void ff_avg_8tap_##TYPE##_##SIZE##v_mmi(uint8_t *dst, ptrdiff_t dststride,     \
SIZE              590 libavcodec/mips/vp9_mc_mmi.c     convolve_avg_vert_mmi(src, srcstride, dst, dststride, filter, SIZE, h);    \
SIZE              593 libavcodec/mips/vp9_mc_mmi.c void ff_avg_8tap_##TYPE##_##SIZE##hv_mmi(uint8_t *dst, ptrdiff_t dststride,    \
SIZE              605 libavcodec/mips/vp9_mc_mmi.c     convolve_horiz_mmi(src, srcstride, temp2, 64, hfilter, SIZE, tmp_h);       \
SIZE              606 libavcodec/mips/vp9_mc_mmi.c     convolve_vert_mmi(temp2, 64, temp1, 64, vfilter, SIZE, h);                 \
SIZE              607 libavcodec/mips/vp9_mc_mmi.c     convolve_avg_mmi(temp1, 64, dst, dststride, SIZE, h);                      \
SIZE             4326 libavcodec/mips/vp9_mc_msa.c #define VP9_8TAP_MIPS_MSA_FUNC(SIZE, type, type_idx)                           \
SIZE             4327 libavcodec/mips/vp9_mc_msa.c void ff_put_8tap_##type##_##SIZE##h_msa(uint8_t *dst, ptrdiff_t dststride,     \
SIZE             4334 libavcodec/mips/vp9_mc_msa.c     common_hz_8t_##SIZE##w_msa(src, srcstride, dst, dststride, filter, h);     \
SIZE             4337 libavcodec/mips/vp9_mc_msa.c void ff_put_8tap_##type##_##SIZE##v_msa(uint8_t *dst, ptrdiff_t dststride,     \
SIZE             4344 libavcodec/mips/vp9_mc_msa.c     common_vt_8t_##SIZE##w_msa(src, srcstride, dst, dststride, filter, h);     \
SIZE             4347 libavcodec/mips/vp9_mc_msa.c void ff_put_8tap_##type##_##SIZE##hv_msa(uint8_t *dst, ptrdiff_t dststride,    \
SIZE             4355 libavcodec/mips/vp9_mc_msa.c     common_hv_8ht_8vt_##SIZE##w_msa(src, srcstride, dst, dststride, hfilter,   \
SIZE             4359 libavcodec/mips/vp9_mc_msa.c void ff_avg_8tap_##type##_##SIZE##h_msa(uint8_t *dst, ptrdiff_t dststride,     \
SIZE             4366 libavcodec/mips/vp9_mc_msa.c     common_hz_8t_and_aver_dst_##SIZE##w_msa(src, srcstride, dst,               \
SIZE             4370 libavcodec/mips/vp9_mc_msa.c void ff_avg_8tap_##type##_##SIZE##v_msa(uint8_t *dst, ptrdiff_t dststride,     \
SIZE             4377 libavcodec/mips/vp9_mc_msa.c     common_vt_8t_and_aver_dst_##SIZE##w_msa(src, srcstride, dst, dststride,    \
SIZE             4381 libavcodec/mips/vp9_mc_msa.c void ff_avg_8tap_##type##_##SIZE##hv_msa(uint8_t *dst, ptrdiff_t dststride,    \
SIZE             4389 libavcodec/mips/vp9_mc_msa.c     common_hv_8ht_8vt_and_aver_dst_##SIZE##w_msa(src, srcstride, dst,          \
SIZE             4394 libavcodec/mips/vp9_mc_msa.c #define VP9_COPY_AVG_MIPS_MSA_FUNC(SIZE)                           \
SIZE             4395 libavcodec/mips/vp9_mc_msa.c void ff_copy##SIZE##_msa(uint8_t *dst, ptrdiff_t dststride,        \
SIZE             4400 libavcodec/mips/vp9_mc_msa.c     copy_width##SIZE##_msa(src, srcstride, dst, dststride, h);     \
SIZE             4403 libavcodec/mips/vp9_mc_msa.c void ff_avg##SIZE##_msa(uint8_t *dst, ptrdiff_t dststride,         \
SIZE             4408 libavcodec/mips/vp9_mc_msa.c     avg_width##SIZE##_msa(src, srcstride, dst, dststride, h);      \
SIZE             4411 libavcodec/mips/vp9_mc_msa.c #define VP9_AVG_MIPS_MSA_FUNC(SIZE)                               \
SIZE             4412 libavcodec/mips/vp9_mc_msa.c void ff_avg##SIZE##_msa(uint8_t *dst, ptrdiff_t dststride,        \
SIZE             4417 libavcodec/mips/vp9_mc_msa.c     avg_width##SIZE##_msa(src, srcstride, dst, dststride, h);     \
SIZE               24 libavcodec/mips/vp9dsp_mips.h #define VP9_8TAP_MIPS_MSA_FUNC(SIZE, type, type_idx)                         \
SIZE               25 libavcodec/mips/vp9dsp_mips.h void ff_put_8tap_##type##_##SIZE##h_msa(uint8_t *dst, ptrdiff_t dststride,   \
SIZE               30 libavcodec/mips/vp9dsp_mips.h void ff_put_8tap_##type##_##SIZE##v_msa(uint8_t *dst, ptrdiff_t dststride,   \
SIZE               35 libavcodec/mips/vp9dsp_mips.h void ff_put_8tap_##type##_##SIZE##hv_msa(uint8_t *dst, ptrdiff_t dststride,  \
SIZE               40 libavcodec/mips/vp9dsp_mips.h void ff_avg_8tap_##type##_##SIZE##h_msa(uint8_t *dst, ptrdiff_t dststride,   \
SIZE               45 libavcodec/mips/vp9dsp_mips.h void ff_avg_8tap_##type##_##SIZE##v_msa(uint8_t *dst, ptrdiff_t dststride,   \
SIZE               50 libavcodec/mips/vp9dsp_mips.h void ff_avg_8tap_##type##_##SIZE##hv_msa(uint8_t *dst, ptrdiff_t dststride,  \
SIZE               55 libavcodec/mips/vp9dsp_mips.h #define VP9_BILINEAR_MIPS_MSA_FUNC(SIZE)                                   \
SIZE               56 libavcodec/mips/vp9dsp_mips.h void ff_put_bilin_##SIZE##h_msa(uint8_t *dst, ptrdiff_t dststride,         \
SIZE               60 libavcodec/mips/vp9dsp_mips.h void ff_put_bilin_##SIZE##v_msa(uint8_t *dst, ptrdiff_t dststride,         \
SIZE               64 libavcodec/mips/vp9dsp_mips.h void ff_put_bilin_##SIZE##hv_msa(uint8_t *dst, ptrdiff_t dststride,        \
SIZE               68 libavcodec/mips/vp9dsp_mips.h void ff_avg_bilin_##SIZE##h_msa(uint8_t *dst, ptrdiff_t dststride,         \
SIZE               72 libavcodec/mips/vp9dsp_mips.h void ff_avg_bilin_##SIZE##v_msa(uint8_t *dst, ptrdiff_t dststride,         \
SIZE               76 libavcodec/mips/vp9dsp_mips.h void ff_avg_bilin_##SIZE##hv_msa(uint8_t *dst, ptrdiff_t dststride,        \
SIZE               80 libavcodec/mips/vp9dsp_mips.h #define VP9_COPY_AVG_MIPS_MSA_FUNC(SIZE)                           \
SIZE               81 libavcodec/mips/vp9dsp_mips.h void ff_copy##SIZE##_msa(uint8_t *dst, ptrdiff_t dststride,        \
SIZE               85 libavcodec/mips/vp9dsp_mips.h void ff_avg##SIZE##_msa(uint8_t *dst, ptrdiff_t dststride,         \
SIZE              237 libavcodec/mips/vp9dsp_mips.h #define VP9_8TAP_MIPS_MMI_FUNC(SIZE, type, type_idx)                         \
SIZE              238 libavcodec/mips/vp9dsp_mips.h void ff_put_8tap_##type##_##SIZE##h_mmi(uint8_t *dst, ptrdiff_t dststride,   \
SIZE              243 libavcodec/mips/vp9dsp_mips.h void ff_put_8tap_##type##_##SIZE##v_mmi(uint8_t *dst, ptrdiff_t dststride,   \
SIZE              248 libavcodec/mips/vp9dsp_mips.h void ff_put_8tap_##type##_##SIZE##hv_mmi(uint8_t *dst, ptrdiff_t dststride,  \
SIZE              253 libavcodec/mips/vp9dsp_mips.h void ff_avg_8tap_##type##_##SIZE##h_mmi(uint8_t *dst, ptrdiff_t dststride,   \
SIZE              258 libavcodec/mips/vp9dsp_mips.h void ff_avg_8tap_##type##_##SIZE##v_mmi(uint8_t *dst, ptrdiff_t dststride,   \
SIZE              263 libavcodec/mips/vp9dsp_mips.h void ff_avg_8tap_##type##_##SIZE##hv_mmi(uint8_t *dst, ptrdiff_t dststride,  \
SIZE               70 libavcodec/ppc/h264qpel.c #define H264_MC(OPNAME, SIZE, CODETYPE) \
SIZE               71 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc00_ ## CODETYPE (uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE               73 libavcodec/ppc/h264qpel.c     ff_ ## OPNAME ## pixels ## SIZE ## _ ## CODETYPE(dst, src, stride, SIZE);\
SIZE               76 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc10_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE               78 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, half)[SIZE*SIZE];\
SIZE               79 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(half, src, SIZE, stride);\
SIZE               80 libavcodec/ppc/h264qpel.c     OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, src, half, stride, stride, SIZE);\
SIZE               83 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc20_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE               85 libavcodec/ppc/h264qpel.c     OPNAME ## h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(dst, src, stride, stride);\
SIZE               88 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc30_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE               90 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, half)[SIZE*SIZE];\
SIZE               91 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(half, src, SIZE, stride);\
SIZE               92 libavcodec/ppc/h264qpel.c     OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, src+1, half, stride, stride, SIZE);\
SIZE               95 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc01_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE               97 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, half)[SIZE*SIZE];\
SIZE               98 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(half, src, SIZE, stride);\
SIZE               99 libavcodec/ppc/h264qpel.c     OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, src, half, stride, stride, SIZE);\
SIZE              102 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc02_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              104 libavcodec/ppc/h264qpel.c     OPNAME ## h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(dst, src, stride, stride);\
SIZE              107 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc03_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              109 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, half)[SIZE*SIZE];\
SIZE              110 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(half, src, SIZE, stride);\
SIZE              111 libavcodec/ppc/h264qpel.c     OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, src+stride, half, stride, stride, SIZE);\
SIZE              114 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc11_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              116 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfH)[SIZE*SIZE];\
SIZE              117 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfV)[SIZE*SIZE];\
SIZE              118 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src, SIZE, stride);\
SIZE              119 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src, SIZE, stride);\
SIZE              120 libavcodec/ppc/h264qpel.c     OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfV, stride, SIZE, SIZE);\
SIZE              123 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc31_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              125 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfH)[SIZE*SIZE];\
SIZE              126 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfV)[SIZE*SIZE];\
SIZE              127 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src, SIZE, stride);\
SIZE              128 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src+1, SIZE, stride);\
SIZE              129 libavcodec/ppc/h264qpel.c     OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfV, stride, SIZE, SIZE);\
SIZE              132 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc13_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              134 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfH)[SIZE*SIZE];\
SIZE              135 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfV)[SIZE*SIZE];\
SIZE              136 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src + stride, SIZE, stride);\
SIZE              137 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src, SIZE, stride);\
SIZE              138 libavcodec/ppc/h264qpel.c     OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfV, stride, SIZE, SIZE);\
SIZE              141 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc33_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              143 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfH)[SIZE*SIZE];\
SIZE              144 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfV)[SIZE*SIZE];\
SIZE              145 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src + stride, SIZE, stride);\
SIZE              146 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src+1, SIZE, stride);\
SIZE              147 libavcodec/ppc/h264qpel.c     OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfV, stride, SIZE, SIZE);\
SIZE              150 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc22_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              152 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, int16_t, tmp)[SIZE*(SIZE+8)];\
SIZE              153 libavcodec/ppc/h264qpel.c     OPNAME ## h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(dst, tmp, src, stride, SIZE, stride);\
SIZE              156 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc21_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              158 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfH)[SIZE*SIZE];\
SIZE              159 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfHV)[SIZE*SIZE];\
SIZE              160 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, int16_t, tmp)[SIZE*(SIZE+8)];\
SIZE              161 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src, SIZE, stride);\
SIZE              162 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(halfHV, tmp, src, SIZE, SIZE, stride);\
SIZE              163 libavcodec/ppc/h264qpel.c     OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfHV, stride, SIZE, SIZE);\
SIZE              166 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc23_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              168 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfH)[SIZE*SIZE];\
SIZE              169 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfHV)[SIZE*SIZE];\
SIZE              170 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, int16_t, tmp)[SIZE*(SIZE+8)];\
SIZE              171 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src + stride, SIZE, stride);\
SIZE              172 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(halfHV, tmp, src, SIZE, SIZE, stride);\
SIZE              173 libavcodec/ppc/h264qpel.c     OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfHV, stride, SIZE, SIZE);\
SIZE              176 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc12_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              178 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfV)[SIZE*SIZE];\
SIZE              179 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfHV)[SIZE*SIZE];\
SIZE              180 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, int16_t, tmp)[SIZE*(SIZE+8)];\
SIZE              181 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src, SIZE, stride);\
SIZE              182 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(halfHV, tmp, src, SIZE, SIZE, stride);\
SIZE              183 libavcodec/ppc/h264qpel.c     OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfV, halfHV, stride, SIZE, SIZE);\
SIZE              186 libavcodec/ppc/h264qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc32_ ## CODETYPE(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              188 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfV)[SIZE*SIZE];\
SIZE              189 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, uint8_t, halfHV)[SIZE*SIZE];\
SIZE              190 libavcodec/ppc/h264qpel.c     DECLARE_ALIGNED(16, int16_t, tmp)[SIZE*(SIZE+8)];\
SIZE              191 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src+1, SIZE, stride);\
SIZE              192 libavcodec/ppc/h264qpel.c     put_h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(halfHV, tmp, src, SIZE, SIZE, stride);\
SIZE              193 libavcodec/ppc/h264qpel.c     OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfV, halfHV, stride, SIZE, SIZE);\
SIZE              213 libavcodec/rv30dsp.c #define RV30_MC(OPNAME, SIZE) \
SIZE              214 libavcodec/rv30dsp.c static void OPNAME ## rv30_tpel ## SIZE ## _mc10_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              216 libavcodec/rv30dsp.c     OPNAME ## rv30_tpel ## SIZE ## _h_lowpass(dst, src, stride, stride, 12, 6);\
SIZE              219 libavcodec/rv30dsp.c static void OPNAME ## rv30_tpel ## SIZE ## _mc20_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              221 libavcodec/rv30dsp.c     OPNAME ## rv30_tpel ## SIZE ## _h_lowpass(dst, src, stride, stride, 6, 12);\
SIZE              224 libavcodec/rv30dsp.c static void OPNAME ## rv30_tpel ## SIZE ## _mc01_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              226 libavcodec/rv30dsp.c     OPNAME ## rv30_tpel ## SIZE ## _v_lowpass(dst, src, stride, stride, 12, 6);\
SIZE              229 libavcodec/rv30dsp.c static void OPNAME ## rv30_tpel ## SIZE ## _mc02_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              231 libavcodec/rv30dsp.c     OPNAME ## rv30_tpel ## SIZE ## _v_lowpass(dst, src, stride, stride, 6, 12);\
SIZE              234 libavcodec/rv30dsp.c static void OPNAME ## rv30_tpel ## SIZE ## _mc11_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              236 libavcodec/rv30dsp.c     OPNAME ## rv30_tpel ## SIZE ## _hv_lowpass(dst, src, stride, stride);\
SIZE              239 libavcodec/rv30dsp.c static void OPNAME ## rv30_tpel ## SIZE ## _mc12_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              241 libavcodec/rv30dsp.c     OPNAME ## rv30_tpel ## SIZE ## _hvv_lowpass(dst, src, stride, stride);\
SIZE              244 libavcodec/rv30dsp.c static void OPNAME ## rv30_tpel ## SIZE ## _mc21_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              246 libavcodec/rv30dsp.c     OPNAME ## rv30_tpel ## SIZE ## _hhv_lowpass(dst, src, stride, stride);\
SIZE              249 libavcodec/rv30dsp.c static void OPNAME ## rv30_tpel ## SIZE ## _mc22_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              251 libavcodec/rv30dsp.c     OPNAME ## rv30_tpel ## SIZE ## _hhvv_lowpass(dst, src, stride, stride);\
SIZE              110 libavcodec/rv40dsp.c #define RV40_MC(OPNAME, SIZE) \
SIZE              111 libavcodec/rv40dsp.c static void OPNAME ## rv40_qpel ## SIZE ## _mc10_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              113 libavcodec/rv40dsp.c     OPNAME ## rv40_qpel ## SIZE ## _h_lowpass(dst, src, stride, stride, SIZE, 52, 20, 6);\
SIZE              116 libavcodec/rv40dsp.c static void OPNAME ## rv40_qpel ## SIZE ## _mc30_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              118 libavcodec/rv40dsp.c     OPNAME ## rv40_qpel ## SIZE ## _h_lowpass(dst, src, stride, stride, SIZE, 20, 52, 6);\
SIZE              121 libavcodec/rv40dsp.c static void OPNAME ## rv40_qpel ## SIZE ## _mc01_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              123 libavcodec/rv40dsp.c     OPNAME ## rv40_qpel ## SIZE ## _v_lowpass(dst, src, stride, stride, SIZE, 52, 20, 6);\
SIZE              126 libavcodec/rv40dsp.c static void OPNAME ## rv40_qpel ## SIZE ## _mc11_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              128 libavcodec/rv40dsp.c     uint8_t full[SIZE*(SIZE+5)];\
SIZE              129 libavcodec/rv40dsp.c     uint8_t * const full_mid = full + SIZE*2;\
SIZE              130 libavcodec/rv40dsp.c     put_rv40_qpel ## SIZE ## _h_lowpass(full, src - 2*stride, SIZE, stride, SIZE+5, 52, 20, 6);\
SIZE              131 libavcodec/rv40dsp.c     OPNAME ## rv40_qpel ## SIZE ## _v_lowpass(dst, full_mid, stride, SIZE, SIZE, 52, 20, 6);\
SIZE              134 libavcodec/rv40dsp.c static void OPNAME ## rv40_qpel ## SIZE ## _mc21_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              136 libavcodec/rv40dsp.c     uint8_t full[SIZE*(SIZE+5)];\
SIZE              137 libavcodec/rv40dsp.c     uint8_t * const full_mid = full + SIZE*2;\
SIZE              138 libavcodec/rv40dsp.c     put_rv40_qpel ## SIZE ## _h_lowpass(full, src - 2*stride, SIZE, stride, SIZE+5, 20, 20, 5);\
SIZE              139 libavcodec/rv40dsp.c     OPNAME ## rv40_qpel ## SIZE ## _v_lowpass(dst, full_mid, stride, SIZE, SIZE, 52, 20, 6);\
SIZE              142 libavcodec/rv40dsp.c static void OPNAME ## rv40_qpel ## SIZE ## _mc31_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              144 libavcodec/rv40dsp.c     uint8_t full[SIZE*(SIZE+5)];\
SIZE              145 libavcodec/rv40dsp.c     uint8_t * const full_mid = full + SIZE*2;\
SIZE              146 libavcodec/rv40dsp.c     put_rv40_qpel ## SIZE ## _h_lowpass(full, src - 2*stride, SIZE, stride, SIZE+5, 20, 52, 6);\
SIZE              147 libavcodec/rv40dsp.c     OPNAME ## rv40_qpel ## SIZE ## _v_lowpass(dst, full_mid, stride, SIZE, SIZE, 52, 20, 6);\
SIZE              150 libavcodec/rv40dsp.c static void OPNAME ## rv40_qpel ## SIZE ## _mc12_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              152 libavcodec/rv40dsp.c     uint8_t full[SIZE*(SIZE+5)];\
SIZE              153 libavcodec/rv40dsp.c     uint8_t * const full_mid = full + SIZE*2;\
SIZE              154 libavcodec/rv40dsp.c     put_rv40_qpel ## SIZE ## _h_lowpass(full, src - 2*stride, SIZE, stride, SIZE+5, 52, 20, 6);\
SIZE              155 libavcodec/rv40dsp.c     OPNAME ## rv40_qpel ## SIZE ## _v_lowpass(dst, full_mid, stride, SIZE, SIZE, 20, 20, 5);\
SIZE              158 libavcodec/rv40dsp.c static void OPNAME ## rv40_qpel ## SIZE ## _mc22_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              160 libavcodec/rv40dsp.c     uint8_t full[SIZE*(SIZE+5)];\
SIZE              161 libavcodec/rv40dsp.c     uint8_t * const full_mid = full + SIZE*2;\
SIZE              162 libavcodec/rv40dsp.c     put_rv40_qpel ## SIZE ## _h_lowpass(full, src - 2*stride, SIZE, stride, SIZE+5, 20, 20, 5);\
SIZE              163 libavcodec/rv40dsp.c     OPNAME ## rv40_qpel ## SIZE ## _v_lowpass(dst, full_mid, stride, SIZE, SIZE, 20, 20, 5);\
SIZE              166 libavcodec/rv40dsp.c static void OPNAME ## rv40_qpel ## SIZE ## _mc32_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              168 libavcodec/rv40dsp.c     uint8_t full[SIZE*(SIZE+5)];\
SIZE              169 libavcodec/rv40dsp.c     uint8_t * const full_mid = full + SIZE*2;\
SIZE              170 libavcodec/rv40dsp.c     put_rv40_qpel ## SIZE ## _h_lowpass(full, src - 2*stride, SIZE, stride, SIZE+5, 20, 52, 6);\
SIZE              171 libavcodec/rv40dsp.c     OPNAME ## rv40_qpel ## SIZE ## _v_lowpass(dst, full_mid, stride, SIZE, SIZE, 20, 20, 5);\
SIZE              174 libavcodec/rv40dsp.c static void OPNAME ## rv40_qpel ## SIZE ## _mc03_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              176 libavcodec/rv40dsp.c     OPNAME ## rv40_qpel ## SIZE ## _v_lowpass(dst, src, stride, stride, SIZE, 20, 52, 6);\
SIZE              179 libavcodec/rv40dsp.c static void OPNAME ## rv40_qpel ## SIZE ## _mc13_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              181 libavcodec/rv40dsp.c     uint8_t full[SIZE*(SIZE+5)];\
SIZE              182 libavcodec/rv40dsp.c     uint8_t * const full_mid = full + SIZE*2;\
SIZE              183 libavcodec/rv40dsp.c     put_rv40_qpel ## SIZE ## _h_lowpass(full, src - 2*stride, SIZE, stride, SIZE+5, 52, 20, 6);\
SIZE              184 libavcodec/rv40dsp.c     OPNAME ## rv40_qpel ## SIZE ## _v_lowpass(dst, full_mid, stride, SIZE, SIZE, 20, 52, 6);\
SIZE              187 libavcodec/rv40dsp.c static void OPNAME ## rv40_qpel ## SIZE ## _mc23_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              189 libavcodec/rv40dsp.c     uint8_t full[SIZE*(SIZE+5)];\
SIZE              190 libavcodec/rv40dsp.c     uint8_t * const full_mid = full + SIZE*2;\
SIZE              191 libavcodec/rv40dsp.c     put_rv40_qpel ## SIZE ## _h_lowpass(full, src - 2*stride, SIZE, stride, SIZE+5, 20, 20, 5);\
SIZE              192 libavcodec/rv40dsp.c     OPNAME ## rv40_qpel ## SIZE ## _v_lowpass(dst, full_mid, stride, SIZE, SIZE, 20, 52, 6);\
SIZE              116 libavcodec/tests/cabac.c     uint8_t b[9*SIZE];
SIZE              117 libavcodec/tests/cabac.c     uint8_t r[9*SIZE];
SIZE              123 libavcodec/tests/cabac.c     ff_init_cabac_encoder(&c, b, SIZE);
SIZE              125 libavcodec/tests/cabac.c     for(i=0; i<SIZE; i++){
SIZE              126 libavcodec/tests/cabac.c         if(2*i<SIZE) r[i] = av_lfg_get(&prng) % 7;
SIZE              130 libavcodec/tests/cabac.c     for(i=0; i<SIZE; i++){
SIZE              134 libavcodec/tests/cabac.c     for(i=0; i<SIZE; i++){
SIZE              142 libavcodec/tests/cabac.c     ff_init_cabac_decoder(&c, b, SIZE);
SIZE              146 libavcodec/tests/cabac.c     for(i=0; i<SIZE; i++){
SIZE              153 libavcodec/tests/cabac.c     for(i=0; i<SIZE; i++){
SIZE               41 libavcodec/tests/golomb.c     temp = av_malloc(SIZE);
SIZE               45 libavcodec/tests/golomb.c     init_put_bits(&pb, temp, SIZE);
SIZE               50 libavcodec/tests/golomb.c     init_get_bits(&gb, temp, 8 * SIZE);
SIZE               63 libavcodec/tests/golomb.c     init_put_bits(&pb, temp, SIZE);
SIZE               68 libavcodec/tests/golomb.c     init_get_bits(&gb, temp, 8 * SIZE);
SIZE               81 libavcodec/tests/golomb.c     init_put_bits(&pb, temp, SIZE);
SIZE               86 libavcodec/tests/golomb.c     init_get_bits(&gb, temp, 8 * SIZE);
SIZE               98 libavcodec/tests/golomb.c     init_put_bits(&pb, temp, SIZE);
SIZE              103 libavcodec/tests/golomb.c     init_get_bits(&gb, temp, 8 * SIZE);
SIZE               35 libavcodec/tests/iirfilter.c     int16_t x[SIZE], y[SIZE];
SIZE               43 libavcodec/tests/iirfilter.c     for (i = 0; i < SIZE; i++)
SIZE               44 libavcodec/tests/iirfilter.c         x[i] = lrint(0.75 * INT16_MAX * sin(0.5 * M_PI * i * i / SIZE));
SIZE               46 libavcodec/tests/iirfilter.c     ff_iir_filter(fcoeffs, fstate, SIZE, x, 1, y, 1);
SIZE               48 libavcodec/tests/iirfilter.c     for (i = 0; i < SIZE; i++)
SIZE               32 libavcodec/tests/rangecoder.c     uint8_t b[9 * SIZE] = {0};
SIZE               33 libavcodec/tests/rangecoder.c     uint8_t r[9 * SIZE];
SIZE               41 libavcodec/tests/rangecoder.c             ff_init_range_encoder(&c, b, SIZE);
SIZE               46 libavcodec/tests/rangecoder.c             for (i = 0; i < SIZE; i++)
SIZE               49 libavcodec/tests/rangecoder.c             for (i = 0; i < SIZE; i++)
SIZE               54 libavcodec/tests/rangecoder.c             ff_init_range_decoder(&c, b, version ? SIZE : actual_length);
SIZE               58 libavcodec/tests/rangecoder.c             for (i = 0; i < SIZE; i++)
SIZE              490 libavcodec/vp8dsp.c #define VP8_EPEL_H(SIZE, TAPS)                                                \
SIZE              491 libavcodec/vp8dsp.c static void put_vp8_epel ## SIZE ## _h ## TAPS ## _c(uint8_t *dst,            \
SIZE              501 libavcodec/vp8dsp.c         for (x = 0; x < SIZE; x++)                                            \
SIZE              508 libavcodec/vp8dsp.c #define VP8_EPEL_V(SIZE, TAPS)                                                \
SIZE              509 libavcodec/vp8dsp.c static void put_vp8_epel ## SIZE ## _v ## TAPS ## _c(uint8_t *dst,            \
SIZE              519 libavcodec/vp8dsp.c         for (x = 0; x < SIZE; x++)                                            \
SIZE              526 libavcodec/vp8dsp.c #define VP8_EPEL_HV(SIZE, HTAPS, VTAPS)                                       \
SIZE              528 libavcodec/vp8dsp.c put_vp8_epel ## SIZE ## _h ## HTAPS ## v ## VTAPS ## _c(uint8_t *dst,         \
SIZE              538 libavcodec/vp8dsp.c     uint8_t tmp_array[(2 * SIZE + VTAPS - 1) * SIZE];                         \
SIZE              543 libavcodec/vp8dsp.c         for (x = 0; x < SIZE; x++)                                            \
SIZE              545 libavcodec/vp8dsp.c         tmp += SIZE;                                                          \
SIZE              548 libavcodec/vp8dsp.c     tmp    = tmp_array + (2 - (VTAPS == 4)) * SIZE;                           \
SIZE              552 libavcodec/vp8dsp.c         for (x = 0; x < SIZE; x++)                                            \
SIZE              553 libavcodec/vp8dsp.c             dst[x] = FILTER_ ## VTAPS ## TAP(tmp, filter, SIZE);              \
SIZE              555 libavcodec/vp8dsp.c         tmp += SIZE;                                                          \
SIZE              585 libavcodec/vp8dsp.c #define VP8_BILINEAR(SIZE)                                                    \
SIZE              586 libavcodec/vp8dsp.c static void put_vp8_bilinear ## SIZE ## _h_c(uint8_t *dst, ptrdiff_t dstride, \
SIZE              593 libavcodec/vp8dsp.c         for (x = 0; x < SIZE; x++)                                            \
SIZE              600 libavcodec/vp8dsp.c static void put_vp8_bilinear ## SIZE ## _v_c(uint8_t *dst, ptrdiff_t dstride, \
SIZE              607 libavcodec/vp8dsp.c         for (x = 0; x < SIZE; x++)                                            \
SIZE              614 libavcodec/vp8dsp.c static void put_vp8_bilinear ## SIZE ## _hv_c(uint8_t *dst,                   \
SIZE              623 libavcodec/vp8dsp.c     uint8_t tmp_array[(2 * SIZE + 1) * SIZE];                                 \
SIZE              626 libavcodec/vp8dsp.c         for (x = 0; x < SIZE; x++)                                            \
SIZE              628 libavcodec/vp8dsp.c         tmp += SIZE;                                                          \
SIZE              633 libavcodec/vp8dsp.c         for (x = 0; x < SIZE; x++)                                            \
SIZE              634 libavcodec/vp8dsp.c             dst[x] = (c * tmp[x] + d * tmp[x + SIZE] + 4) >> 3;               \
SIZE              636 libavcodec/vp8dsp.c         tmp += SIZE;                                                          \
SIZE              644 libavcodec/vp8dsp.c #define VP78_MC_FUNC(IDX, SIZE)                                               \
SIZE              645 libavcodec/vp8dsp.c     dsp->put_vp8_epel_pixels_tab[IDX][0][0] = put_vp8_pixels ## SIZE ## _c;   \
SIZE              646 libavcodec/vp8dsp.c     dsp->put_vp8_epel_pixels_tab[IDX][0][1] = put_vp8_epel ## SIZE ## _h4_c;  \
SIZE              647 libavcodec/vp8dsp.c     dsp->put_vp8_epel_pixels_tab[IDX][0][2] = put_vp8_epel ## SIZE ## _h6_c;  \
SIZE              648 libavcodec/vp8dsp.c     dsp->put_vp8_epel_pixels_tab[IDX][1][0] = put_vp8_epel ## SIZE ## _v4_c;  \
SIZE              649 libavcodec/vp8dsp.c     dsp->put_vp8_epel_pixels_tab[IDX][1][1] = put_vp8_epel ## SIZE ## _h4v4_c; \
SIZE              650 libavcodec/vp8dsp.c     dsp->put_vp8_epel_pixels_tab[IDX][1][2] = put_vp8_epel ## SIZE ## _h6v4_c; \
SIZE              651 libavcodec/vp8dsp.c     dsp->put_vp8_epel_pixels_tab[IDX][2][0] = put_vp8_epel ## SIZE ## _v6_c;  \
SIZE              652 libavcodec/vp8dsp.c     dsp->put_vp8_epel_pixels_tab[IDX][2][1] = put_vp8_epel ## SIZE ## _h4v6_c; \
SIZE              653 libavcodec/vp8dsp.c     dsp->put_vp8_epel_pixels_tab[IDX][2][2] = put_vp8_epel ## SIZE ## _h6v6_c
SIZE              655 libavcodec/vp8dsp.c #define VP78_BILINEAR_MC_FUNC(IDX, SIZE)                                      \
SIZE              656 libavcodec/vp8dsp.c     dsp->put_vp8_bilinear_pixels_tab[IDX][0][0] = put_vp8_pixels   ## SIZE ## _c; \
SIZE              657 libavcodec/vp8dsp.c     dsp->put_vp8_bilinear_pixels_tab[IDX][0][1] = put_vp8_bilinear ## SIZE ## _h_c; \
SIZE              658 libavcodec/vp8dsp.c     dsp->put_vp8_bilinear_pixels_tab[IDX][0][2] = put_vp8_bilinear ## SIZE ## _h_c; \
SIZE              659 libavcodec/vp8dsp.c     dsp->put_vp8_bilinear_pixels_tab[IDX][1][0] = put_vp8_bilinear ## SIZE ## _v_c; \
SIZE              660 libavcodec/vp8dsp.c     dsp->put_vp8_bilinear_pixels_tab[IDX][1][1] = put_vp8_bilinear ## SIZE ## _hv_c; \
SIZE              661 libavcodec/vp8dsp.c     dsp->put_vp8_bilinear_pixels_tab[IDX][1][2] = put_vp8_bilinear ## SIZE ## _hv_c; \
SIZE              662 libavcodec/vp8dsp.c     dsp->put_vp8_bilinear_pixels_tab[IDX][2][0] = put_vp8_bilinear ## SIZE ## _v_c; \
SIZE              663 libavcodec/vp8dsp.c     dsp->put_vp8_bilinear_pixels_tab[IDX][2][1] = put_vp8_bilinear ## SIZE ## _hv_c; \
SIZE              664 libavcodec/vp8dsp.c     dsp->put_vp8_bilinear_pixels_tab[IDX][2][2] = put_vp8_bilinear ## SIZE ## _hv_c
SIZE              297 libavcodec/x86/cavsdsp.c #define CAVS_MC(OPNAME, SIZE, MMX) \
SIZE              298 libavcodec/x86/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc20_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              300 libavcodec/x86/cavsdsp.c     OPNAME ## cavs_qpel ## SIZE ## _h_ ## MMX(dst, src, stride, stride);\
SIZE              303 libavcodec/x86/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc01_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              305 libavcodec/x86/cavsdsp.c     OPNAME ## cavs_qpel ## SIZE ## _v1_ ## MMX(dst, src, stride, stride);\
SIZE              308 libavcodec/x86/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc02_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              310 libavcodec/x86/cavsdsp.c     OPNAME ## cavs_qpel ## SIZE ## _v2_ ## MMX(dst, src, stride, stride);\
SIZE              313 libavcodec/x86/cavsdsp.c static void OPNAME ## cavs_qpel ## SIZE ## _mc03_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              315 libavcodec/x86/cavsdsp.c     OPNAME ## cavs_qpel ## SIZE ## _v3_ ## MMX(dst, src, stride, stride);\
SIZE              239 libavcodec/x86/h264_qpel.c #define H264_MC(OPNAME, SIZE, MMX, ALIGN) \
SIZE              240 libavcodec/x86/h264_qpel.c H264_MC_C(OPNAME, SIZE, MMX, ALIGN)\
SIZE              241 libavcodec/x86/h264_qpel.c H264_MC_V(OPNAME, SIZE, MMX, ALIGN)\
SIZE              242 libavcodec/x86/h264_qpel.c H264_MC_H(OPNAME, SIZE, MMX, ALIGN)\
SIZE              243 libavcodec/x86/h264_qpel.c H264_MC_HV(OPNAME, SIZE, MMX, ALIGN)\
SIZE              258 libavcodec/x86/h264_qpel.c #define H264_MC_C(OPNAME, SIZE, MMX, ALIGN) \
SIZE              259 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc00_ ## MMX (uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              261 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## pixels ## SIZE ## _ ## MMX(dst, src, stride, SIZE);\
SIZE              264 libavcodec/x86/h264_qpel.c #define H264_MC_H(OPNAME, SIZE, MMX, ALIGN) \
SIZE              265 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc10_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              267 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## h264_qpel ## SIZE ## _h_lowpass_l2_ ## MMX(dst, src, src, stride, stride);\
SIZE              270 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc20_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              272 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## h264_qpel ## SIZE ## _h_lowpass_ ## MMX(dst, src, stride, stride);\
SIZE              275 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc30_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              277 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## h264_qpel ## SIZE ## _h_lowpass_l2_ ## MMX(dst, src, src+1, stride, stride);\
SIZE              280 libavcodec/x86/h264_qpel.c #define H264_MC_V(OPNAME, SIZE, MMX, ALIGN) \
SIZE              281 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc01_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              283 libavcodec/x86/h264_qpel.c     LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZE*SIZE]);\
SIZE              284 libavcodec/x86/h264_qpel.c     ff_put_h264_qpel ## SIZE ## _v_lowpass_ ## MMX(temp, src, SIZE, stride);\
SIZE              285 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## pixels ## SIZE ## _l2_ ## MMX(dst, src, temp, stride, stride, SIZE);\
SIZE              288 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc02_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              290 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## h264_qpel ## SIZE ## _v_lowpass_ ## MMX(dst, src, stride, stride);\
SIZE              293 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc03_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              295 libavcodec/x86/h264_qpel.c     LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZE*SIZE]);\
SIZE              296 libavcodec/x86/h264_qpel.c     ff_put_h264_qpel ## SIZE ## _v_lowpass_ ## MMX(temp, src, SIZE, stride);\
SIZE              297 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## pixels ## SIZE ## _l2_ ## MMX(dst, src+stride, temp, stride, stride, SIZE);\
SIZE              300 libavcodec/x86/h264_qpel.c #define H264_MC_HV(OPNAME, SIZE, MMX, ALIGN) \
SIZE              301 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc11_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              303 libavcodec/x86/h264_qpel.c     LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZE*SIZE]);\
SIZE              304 libavcodec/x86/h264_qpel.c     ff_put_h264_qpel ## SIZE ## _v_lowpass_ ## MMX(temp, src, SIZE, stride);\
SIZE              305 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## h264_qpel ## SIZE ## _h_lowpass_l2_ ## MMX(dst, src, temp, stride, SIZE);\
SIZE              308 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc31_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              310 libavcodec/x86/h264_qpel.c     LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZE*SIZE]);\
SIZE              311 libavcodec/x86/h264_qpel.c     ff_put_h264_qpel ## SIZE ## _v_lowpass_ ## MMX(temp, src+1, SIZE, stride);\
SIZE              312 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## h264_qpel ## SIZE ## _h_lowpass_l2_ ## MMX(dst, src, temp, stride, SIZE);\
SIZE              315 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc13_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              317 libavcodec/x86/h264_qpel.c     LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZE*SIZE]);\
SIZE              318 libavcodec/x86/h264_qpel.c     ff_put_h264_qpel ## SIZE ## _v_lowpass_ ## MMX(temp, src, SIZE, stride);\
SIZE              319 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## h264_qpel ## SIZE ## _h_lowpass_l2_ ## MMX(dst, src+stride, temp, stride, SIZE);\
SIZE              322 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc33_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              324 libavcodec/x86/h264_qpel.c     LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZE*SIZE]);\
SIZE              325 libavcodec/x86/h264_qpel.c     ff_put_h264_qpel ## SIZE ## _v_lowpass_ ## MMX(temp, src+1, SIZE, stride);\
SIZE              326 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## h264_qpel ## SIZE ## _h_lowpass_l2_ ## MMX(dst, src+stride, temp, stride, SIZE);\
SIZE              329 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc22_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              331 libavcodec/x86/h264_qpel.c     LOCAL_ALIGNED(ALIGN, uint16_t, temp, [SIZE*(SIZE<8?12:24)]);\
SIZE              332 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## h264_qpel ## SIZE ## _hv_lowpass_ ## MMX(dst, temp, src, stride, SIZE, stride);\
SIZE              335 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc21_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              337 libavcodec/x86/h264_qpel.c     LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZE*(SIZE<8?12:24)*2 + SIZE*SIZE]);\
SIZE              339 libavcodec/x86/h264_qpel.c     int16_t * const halfV= (int16_t*)(temp + SIZE*SIZE);\
SIZE              341 libavcodec/x86/h264_qpel.c     ff_put_h264_qpel ## SIZE ## _hv_lowpass_ ## MMX(halfHV, halfV, src, SIZE, SIZE, stride);\
SIZE              342 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## h264_qpel ## SIZE ## _h_lowpass_l2_ ## MMX(dst, src, halfHV, stride, SIZE);\
SIZE              345 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc23_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              347 libavcodec/x86/h264_qpel.c     LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZE*(SIZE<8?12:24)*2 + SIZE*SIZE]);\
SIZE              349 libavcodec/x86/h264_qpel.c     int16_t * const halfV= (int16_t*)(temp + SIZE*SIZE);\
SIZE              351 libavcodec/x86/h264_qpel.c     ff_put_h264_qpel ## SIZE ## _hv_lowpass_ ## MMX(halfHV, halfV, src, SIZE, SIZE, stride);\
SIZE              352 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## h264_qpel ## SIZE ## _h_lowpass_l2_ ## MMX(dst, src+stride, halfHV, stride, SIZE);\
SIZE              355 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc12_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              357 libavcodec/x86/h264_qpel.c     LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZE*(SIZE<8?12:24)*2 + SIZE*SIZE]);\
SIZE              359 libavcodec/x86/h264_qpel.c     int16_t * const halfV= (int16_t*)(temp + SIZE*SIZE);\
SIZE              361 libavcodec/x86/h264_qpel.c     ff_put_h264_qpel ## SIZE ## _hv_lowpass_ ## MMX(halfHV, halfV, src, SIZE, SIZE, stride);\
SIZE              362 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## pixels ## SIZE ## _l2_shift5_mmxext(dst, halfV+2, halfHV, stride, SIZE, SIZE);\
SIZE              365 libavcodec/x86/h264_qpel.c static void OPNAME ## h264_qpel ## SIZE ## _mc32_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t stride)\
SIZE              367 libavcodec/x86/h264_qpel.c     LOCAL_ALIGNED(ALIGN, uint8_t, temp, [SIZE*(SIZE<8?12:24)*2 + SIZE*SIZE]);\
SIZE              369 libavcodec/x86/h264_qpel.c     int16_t * const halfV= (int16_t*)(temp + SIZE*SIZE);\
SIZE              371 libavcodec/x86/h264_qpel.c     ff_put_h264_qpel ## SIZE ## _hv_lowpass_ ## MMX(halfHV, halfV, src, SIZE, SIZE, stride);\
SIZE              372 libavcodec/x86/h264_qpel.c     ff_ ## OPNAME ## pixels ## SIZE ## _l2_shift5_mmxext(dst, halfV+3, halfHV, stride, SIZE, SIZE);\
SIZE              504 libavcodec/x86/h264_qpel.c #define SET_QPEL_FUNCS(PFX, IDX, SIZE, CPU, PREFIX)                          \
SIZE              506 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][ 0] = PREFIX ## PFX ## SIZE ## _mc00_ ## CPU; \
SIZE              507 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][ 1] = PREFIX ## PFX ## SIZE ## _mc10_ ## CPU; \
SIZE              508 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][ 2] = PREFIX ## PFX ## SIZE ## _mc20_ ## CPU; \
SIZE              509 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][ 3] = PREFIX ## PFX ## SIZE ## _mc30_ ## CPU; \
SIZE              510 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][ 4] = PREFIX ## PFX ## SIZE ## _mc01_ ## CPU; \
SIZE              511 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][ 5] = PREFIX ## PFX ## SIZE ## _mc11_ ## CPU; \
SIZE              512 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][ 6] = PREFIX ## PFX ## SIZE ## _mc21_ ## CPU; \
SIZE              513 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][ 7] = PREFIX ## PFX ## SIZE ## _mc31_ ## CPU; \
SIZE              514 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][ 8] = PREFIX ## PFX ## SIZE ## _mc02_ ## CPU; \
SIZE              515 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][ 9] = PREFIX ## PFX ## SIZE ## _mc12_ ## CPU; \
SIZE              516 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][10] = PREFIX ## PFX ## SIZE ## _mc22_ ## CPU; \
SIZE              517 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][11] = PREFIX ## PFX ## SIZE ## _mc32_ ## CPU; \
SIZE              518 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][12] = PREFIX ## PFX ## SIZE ## _mc03_ ## CPU; \
SIZE              519 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][13] = PREFIX ## PFX ## SIZE ## _mc13_ ## CPU; \
SIZE              520 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][14] = PREFIX ## PFX ## SIZE ## _mc23_ ## CPU; \
SIZE              521 libavcodec/x86/h264_qpel.c     c->PFX ## _pixels_tab[IDX][15] = PREFIX ## PFX ## SIZE ## _mc33_ ## CPU; \
SIZE              168 libavcodec/x86/hpeldsp_init.c #define SET_HPEL_FUNCS_EXT(PFX, IDX, SIZE, CPU)                             \
SIZE              170 libavcodec/x86/hpeldsp_init.c     c->PFX ## _pixels_tab IDX [0] = PFX ## _pixels ## SIZE ## _     ## CPU;
SIZE              173 libavcodec/x86/hpeldsp_init.c #define SET_HPEL_FUNCS(PFX, IDX, SIZE, CPU)                                     \
SIZE              175 libavcodec/x86/hpeldsp_init.c         SET_HPEL_FUNCS_EXT(PFX, IDX, SIZE, CPU)                                 \
SIZE              176 libavcodec/x86/hpeldsp_init.c         c->PFX ## _pixels_tab IDX [1] = PFX ## _pixels ## SIZE ## _x2_  ## CPU; \
SIZE              177 libavcodec/x86/hpeldsp_init.c         c->PFX ## _pixels_tab IDX [2] = PFX ## _pixels ## SIZE ## _y2_  ## CPU; \
SIZE              178 libavcodec/x86/hpeldsp_init.c         c->PFX ## _pixels_tab IDX [3] = PFX ## _pixels ## SIZE ## _xy2_ ## CPU; \
SIZE              181 libavcodec/x86/hpeldsp_init.c #define SET_HPEL_FUNCS(PFX, IDX, SIZE, CPU)                                     \
SIZE              183 libavcodec/x86/hpeldsp_init.c         SET_HPEL_FUNCS_EXT(PFX, IDX, SIZE, CPU)                                 \
SIZE              509 libavcodec/x86/qpeldsp_init.c #define SET_QPEL_FUNCS(PFX, IDX, SIZE, CPU, PREFIX)                          \
SIZE              511 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][ 0] = PREFIX ## PFX ## SIZE ## _mc00_ ## CPU; \
SIZE              512 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][ 1] = PREFIX ## PFX ## SIZE ## _mc10_ ## CPU; \
SIZE              513 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][ 2] = PREFIX ## PFX ## SIZE ## _mc20_ ## CPU; \
SIZE              514 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][ 3] = PREFIX ## PFX ## SIZE ## _mc30_ ## CPU; \
SIZE              515 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][ 4] = PREFIX ## PFX ## SIZE ## _mc01_ ## CPU; \
SIZE              516 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][ 5] = PREFIX ## PFX ## SIZE ## _mc11_ ## CPU; \
SIZE              517 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][ 6] = PREFIX ## PFX ## SIZE ## _mc21_ ## CPU; \
SIZE              518 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][ 7] = PREFIX ## PFX ## SIZE ## _mc31_ ## CPU; \
SIZE              519 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][ 8] = PREFIX ## PFX ## SIZE ## _mc02_ ## CPU; \
SIZE              520 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][ 9] = PREFIX ## PFX ## SIZE ## _mc12_ ## CPU; \
SIZE              521 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][10] = PREFIX ## PFX ## SIZE ## _mc22_ ## CPU; \
SIZE              522 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][11] = PREFIX ## PFX ## SIZE ## _mc32_ ## CPU; \
SIZE              523 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][12] = PREFIX ## PFX ## SIZE ## _mc03_ ## CPU; \
SIZE              524 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][13] = PREFIX ## PFX ## SIZE ## _mc13_ ## CPU; \
SIZE              525 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][14] = PREFIX ## PFX ## SIZE ## _mc23_ ## CPU; \
SIZE              526 libavcodec/x86/qpeldsp_init.c     c->PFX ## _pixels_tab[IDX][15] = PREFIX ## PFX ## SIZE ## _mc33_ ## CPU; \
SIZE               78 libavcodec/x86/rv40dsp_init.c #define QPEL_FUNC_DECL(OP, SIZE, PH, PV, OPT)                           \
SIZE               79 libavcodec/x86/rv40dsp_init.c static void OP ## rv40_qpel ##SIZE ##_mc ##PH ##PV ##OPT(uint8_t *dst,  \
SIZE               85 libavcodec/x86/rv40dsp_init.c         LOCAL_ALIGNED(16, uint8_t, tmp, [SIZE * (SIZE + 5)]);           \
SIZE               86 libavcodec/x86/rv40dsp_init.c         uint8_t *tmpptr = tmp + SIZE * 2;                               \
SIZE               89 libavcodec/x86/rv40dsp_init.c         for (i = 0; i < SIZE; i += LOOPSIZE)                            \
SIZE               90 libavcodec/x86/rv40dsp_init.c             ff_put_rv40_qpel_h ##OPT(tmp + i, SIZE, src + i, stride,    \
SIZE               91 libavcodec/x86/rv40dsp_init.c                                      SIZE + 5, HCOFF(PH));              \
SIZE               92 libavcodec/x86/rv40dsp_init.c         for (i = 0; i < SIZE; i += LOOPSIZE)                            \
SIZE               94 libavcodec/x86/rv40dsp_init.c                                          SIZE, SIZE, VCOFF(PV));        \
SIZE               96 libavcodec/x86/rv40dsp_init.c         for (i = 0; i < SIZE; i += LOOPSIZE)                            \
SIZE               98 libavcodec/x86/rv40dsp_init.c                                           stride, SIZE, VCOFF(PV));     \
SIZE              100 libavcodec/x86/rv40dsp_init.c         for (i = 0; i < SIZE; i += LOOPSIZE)                            \
SIZE              102 libavcodec/x86/rv40dsp_init.c                                           stride, SIZE, HCOFF(PH));     \
SIZE              172 libavcodec/x86/rv40dsp_init.c #define QPEL_FUNC_SET(OP, SIZE, PH, PV, OPT)                            \
SIZE              173 libavcodec/x86/rv40dsp_init.c     c-> OP ## pixels_tab[2 - SIZE / 8][4 * PV + PH] = OP ## rv40_qpel ##SIZE ## _mc ##PH ##PV ##OPT;
SIZE              166 libavcodec/x86/vp8dsp_init.c #define HVTAP(OPT, ALIGN, TAPNUMX, TAPNUMY, SIZE, MAXHEIGHT) \
SIZE              167 libavcodec/x86/vp8dsp_init.c static void ff_put_vp8_epel ## SIZE ## _h ## TAPNUMX ## v ## TAPNUMY ## _ ## OPT( \
SIZE              171 libavcodec/x86/vp8dsp_init.c     LOCAL_ALIGNED(ALIGN, uint8_t, tmp, [SIZE * (MAXHEIGHT + TAPNUMY - 1)]); \
SIZE              172 libavcodec/x86/vp8dsp_init.c     uint8_t *tmpptr = tmp + SIZE * (TAPNUMY / 2 - 1); \
SIZE              174 libavcodec/x86/vp8dsp_init.c     ff_put_vp8_epel ## SIZE ## _h ## TAPNUMX ## _ ## OPT( \
SIZE              175 libavcodec/x86/vp8dsp_init.c         tmp, SIZE,      src,    srcstride, height + TAPNUMY - 1, mx, my); \
SIZE              176 libavcodec/x86/vp8dsp_init.c     ff_put_vp8_epel ## SIZE ## _v ## TAPNUMY ## _ ## OPT( \
SIZE              177 libavcodec/x86/vp8dsp_init.c         dst, dststride, tmpptr, SIZE,      height,               mx, my); \
SIZE              211 libavcodec/x86/vp8dsp_init.c #define HVBILIN(OPT, ALIGN, SIZE, MAXHEIGHT) \
SIZE              212 libavcodec/x86/vp8dsp_init.c static void ff_put_vp8_bilinear ## SIZE ## _hv_ ## OPT( \
SIZE              216 libavcodec/x86/vp8dsp_init.c     LOCAL_ALIGNED(ALIGN, uint8_t, tmp, [SIZE * (MAXHEIGHT + 2)]); \
SIZE              217 libavcodec/x86/vp8dsp_init.c     ff_put_vp8_bilinear ## SIZE ## _h_ ## OPT( \
SIZE              218 libavcodec/x86/vp8dsp_init.c         tmp, SIZE,      src, srcstride, height + 1, mx, my); \
SIZE              219 libavcodec/x86/vp8dsp_init.c     ff_put_vp8_bilinear ## SIZE ## _v_ ## OPT( \
SIZE              220 libavcodec/x86/vp8dsp_init.c         dst, dststride, tmp, SIZE,      height,     mx, my); \
SIZE              295 libavcodec/x86/vp8dsp_init.c #define VP8_LUMA_MC_FUNC(IDX, SIZE, OPT) \
SIZE              296 libavcodec/x86/vp8dsp_init.c     c->put_vp8_epel_pixels_tab[IDX][0][2] = ff_put_vp8_epel ## SIZE ## _h6_ ## OPT; \
SIZE              297 libavcodec/x86/vp8dsp_init.c     c->put_vp8_epel_pixels_tab[IDX][2][0] = ff_put_vp8_epel ## SIZE ## _v6_ ## OPT; \
SIZE              298 libavcodec/x86/vp8dsp_init.c     c->put_vp8_epel_pixels_tab[IDX][2][2] = ff_put_vp8_epel ## SIZE ## _h6v6_ ## OPT
SIZE              300 libavcodec/x86/vp8dsp_init.c #define VP8_MC_FUNC(IDX, SIZE, OPT) \
SIZE              301 libavcodec/x86/vp8dsp_init.c     c->put_vp8_epel_pixels_tab[IDX][0][1] = ff_put_vp8_epel ## SIZE ## _h4_ ## OPT; \
SIZE              302 libavcodec/x86/vp8dsp_init.c     c->put_vp8_epel_pixels_tab[IDX][1][0] = ff_put_vp8_epel ## SIZE ## _v4_ ## OPT; \
SIZE              303 libavcodec/x86/vp8dsp_init.c     c->put_vp8_epel_pixels_tab[IDX][1][1] = ff_put_vp8_epel ## SIZE ## _h4v4_ ## OPT; \
SIZE              304 libavcodec/x86/vp8dsp_init.c     c->put_vp8_epel_pixels_tab[IDX][1][2] = ff_put_vp8_epel ## SIZE ## _h6v4_ ## OPT; \
SIZE              305 libavcodec/x86/vp8dsp_init.c     c->put_vp8_epel_pixels_tab[IDX][2][1] = ff_put_vp8_epel ## SIZE ## _h4v6_ ## OPT; \
SIZE              306 libavcodec/x86/vp8dsp_init.c     VP8_LUMA_MC_FUNC(IDX, SIZE, OPT)
SIZE              308 libavcodec/x86/vp8dsp_init.c #define VP8_BILINEAR_MC_FUNC(IDX, SIZE, OPT) \
SIZE              309 libavcodec/x86/vp8dsp_init.c     c->put_vp8_bilinear_pixels_tab[IDX][0][1] = ff_put_vp8_bilinear ## SIZE ## _h_ ## OPT; \
SIZE              310 libavcodec/x86/vp8dsp_init.c     c->put_vp8_bilinear_pixels_tab[IDX][0][2] = ff_put_vp8_bilinear ## SIZE ## _h_ ## OPT; \
SIZE              311 libavcodec/x86/vp8dsp_init.c     c->put_vp8_bilinear_pixels_tab[IDX][1][0] = ff_put_vp8_bilinear ## SIZE ## _v_ ## OPT; \
SIZE              312 libavcodec/x86/vp8dsp_init.c     c->put_vp8_bilinear_pixels_tab[IDX][1][1] = ff_put_vp8_bilinear ## SIZE ## _hv_ ## OPT; \
SIZE              313 libavcodec/x86/vp8dsp_init.c     c->put_vp8_bilinear_pixels_tab[IDX][1][2] = ff_put_vp8_bilinear ## SIZE ## _hv_ ## OPT; \
SIZE              314 libavcodec/x86/vp8dsp_init.c     c->put_vp8_bilinear_pixels_tab[IDX][2][0] = ff_put_vp8_bilinear ## SIZE ## _v_ ## OPT; \
SIZE              315 libavcodec/x86/vp8dsp_init.c     c->put_vp8_bilinear_pixels_tab[IDX][2][1] = ff_put_vp8_bilinear ## SIZE ## _hv_ ## OPT; \
SIZE              316 libavcodec/x86/vp8dsp_init.c     c->put_vp8_bilinear_pixels_tab[IDX][2][2] = ff_put_vp8_bilinear ## SIZE ## _hv_ ## OPT
SIZE               56 libavfilter/vf_atadenoise.c     void *data[4][SIZE];
SIZE               57 libavfilter/vf_atadenoise.c     int linesize[4][SIZE];
SIZE               77 libavfilter/vf_atadenoise.c     { "s",  "set how many frames to use",    OFFSET(size),     AV_OPT_TYPE_INT,   {.i64=9},   5, SIZE, VF    },
SIZE              143 libavfilter/vf_atadenoise.c                              const uint8_t *ssrcf[SIZE],                    \
SIZE              190 libavfilter/vf_atadenoise.c                                       const uint8_t *ssrcf[SIZE],           \
SIZE              258 libavfilter/vf_atadenoise.c         const uint8_t *srcf[SIZE];
SIZE               61 libavfilter/vf_deflicker.c     float luminance[SIZE];
SIZE               62 libavfilter/vf_deflicker.c     float sorted[SIZE];
SIZE               77 libavfilter/vf_deflicker.c     { "size",  "set how many frames to use",  OFFSET(size), AV_OPT_TYPE_INT, {.i64=5}, 2, SIZE, FLAGS },
SIZE               78 libavfilter/vf_deflicker.c     { "s",     "set how many frames to use",  OFFSET(size), AV_OPT_TYPE_INT, {.i64=5}, 2, SIZE, FLAGS },
SIZE               40 libswscale/tests/colorspace.c     uint8_t *srcBuffer = av_malloc(SIZE);
SIZE               41 libswscale/tests/colorspace.c     uint8_t *dstBuffer = av_malloc(SIZE);
SIZE              105 libswscale/tests/colorspace.c         memset(srcBuffer, srcByte, SIZE);
SIZE              111 libswscale/tests/colorspace.c                 memset(dstBuffer, dstByte, SIZE);
SIZE              131 libswscale/tests/colorspace.c                     for (i = 0; i < SIZE; i++) {
SIZE              149 libswscale/tests/colorspace.c                     for (i = dstOffset + width * dstBpp; i < SIZE; i++) {
SIZE              138 tests/tiny_psnr.c     uint8_t buf[2][SIZE];
SIZE              176 tests/tiny_psnr.c         int s0 = fread(buf[0], 1, SIZE, f[0]);
SIZE              177 tests/tiny_psnr.c         int s1 = fread(buf[1], 1, SIZE, f[1]);
SIZE               78 tools/ffhash.c     uint8_t buffer[SIZE];
SIZE               95 tools/ffhash.c         int size = read(fd, buffer, SIZE);