/third_party/ffmpeg/libavcodec/loongarch/ |
D | vc1dsp_loongarch.h | 37 #define FF_PUT_VC1_MSPEL_MC_LASX(hmode, vmode) \ argument 38 void ff_put_vc1_mspel_mc ## hmode ## vmode ## _lasx(uint8_t *dst, \ 41 void ff_put_vc1_mspel_mc ## hmode ## vmode ## _16_lasx(uint8_t *dst, \ 66 #define FF_PUT_VC1_MSPEL_MC_H_LASX(hmode) \ argument 67 void ff_put_vc1_mspel_mc ## hmode ## 0_16_lasx(uint8_t *dst, \
|
D | vc1dsp_lasx.c | 523 ptrdiff_t stride, int hmode, int vmode, in put_vc1_mspel_mc_h_v_lasx() argument 536 int shift = (shift_value[hmode] + shift_value[vmode]) >> 1; in put_vc1_mspel_mc_h_v_lasx() 607 para_v = para_value[hmode - 1]; in put_vc1_mspel_mc_h_v_lasx() 670 #define PUT_VC1_MSPEL_MC_LASX(hmode, vmode) \ argument 671 void ff_put_vc1_mspel_mc ## hmode ## vmode ## _lasx(uint8_t *dst, \ 675 put_vc1_mspel_mc_h_v_lasx(dst, src, stride, hmode, vmode, rnd); \ 677 void ff_put_vc1_mspel_mc ## hmode ## vmode ## _16_lasx(uint8_t *dst, \ 681 put_vc1_mspel_mc_h_v_lasx(dst, src, stride, hmode, vmode, rnd); \ 682 put_vc1_mspel_mc_h_v_lasx(dst + 8, src + 8, stride, hmode, vmode, rnd); \ 684 put_vc1_mspel_mc_h_v_lasx(dst, src, stride, hmode, vmode, rnd); \ [all …]
|
/third_party/ffmpeg/libavcodec/x86/ |
D | vc1dsp_mmx.c | 340 int hmode, int vmode, int rnd)\ 355 if (hmode) { /* Horizontal filter to apply, output to tmp */\ 357 int shift = (shift_value[hmode]+shift_value[vmode])>>1;\ 364 vc1_put_shift_hor_16bits[hmode](dst, stride, tmp+1, 64-rnd);\ 374 vc1_put_shift_8bits[hmode](dst, src, stride, rnd, 1);\ 377 int stride, int hmode, int vmode, int rnd)\ 379 OP ## vc1_mspel_mc(dst + 0, src + 0, stride, hmode, vmode, rnd); \ 380 OP ## vc1_mspel_mc(dst + 8, src + 8, stride, hmode, vmode, rnd); \ 382 OP ## vc1_mspel_mc(dst + 0, src + 0, stride, hmode, vmode, rnd); \ 383 OP ## vc1_mspel_mc(dst + 8, src + 8, stride, hmode, vmode, rnd); \
|
/third_party/ffmpeg/libavcodec/mips/ |
D | vc1dsp_msa.c | 314 ptrdiff_t stride, int hmode, int vmode, in put_vc1_mspel_mc_h_v_msa() argument 325 int shift = (shift_value[hmode] + shift_value[vmode]) >> 1; in put_vc1_mspel_mc_h_v_msa() 407 cnst_para0 = __msa_fill_h(para_value[hmode - 1][0]); in put_vc1_mspel_mc_h_v_msa() 408 cnst_para1 = __msa_fill_h(para_value[hmode - 1][1]); in put_vc1_mspel_mc_h_v_msa() 409 cnst_para2 = __msa_fill_h(para_value[hmode - 1][2]); in put_vc1_mspel_mc_h_v_msa() 410 cnst_para3 = __msa_fill_h(para_value[hmode - 1][3]); in put_vc1_mspel_mc_h_v_msa() 433 #define PUT_VC1_MSPEL_MC_MSA(hmode, vmode) \ argument 434 void ff_put_vc1_mspel_mc ## hmode ## vmode ## _msa(uint8_t *dst, \ 438 put_vc1_mspel_mc_h_v_msa(dst, src, stride, hmode, vmode, rnd); \ 440 void ff_put_vc1_mspel_mc ## hmode ## vmode ## _16_msa(uint8_t *dst, \ [all …]
|
D | vc1dsp_mips.h | 198 #define FF_PUT_VC1_MSPEL_MC_MSA(hmode, vmode) \ argument 199 void ff_put_vc1_mspel_mc ## hmode ## vmode ## _msa(uint8_t *dst, \ 202 void ff_put_vc1_mspel_mc ## hmode ## vmode ## _16_msa(uint8_t *dst, \
|
D | vc1dsp_mmi.c | 2083 int hmode, int vmode, int rnd) \ 2099 if (hmode) { /* Horizontal filter to apply, output to tmp */ \ 2101 int shift = (shift_value[hmode]+shift_value[vmode])>>1; \ 2108 vc1_put_shift_hor_16bits[hmode](dst, stride, tmp+1, 64-rnd); \ 2118 vc1_put_shift_8bits[hmode](dst, src, stride, rnd, 1); \ 2121 int stride, int hmode, int vmode, int rnd)\ 2123 OP ## vc1_mspel_mc(dst + 0, src + 0, stride, hmode, vmode, rnd); \ 2124 OP ## vc1_mspel_mc(dst + 8, src + 8, stride, hmode, vmode, rnd); \ 2126 OP ## vc1_mspel_mc(dst + 0, src + 0, stride, hmode, vmode, rnd); \ 2127 OP ## vc1_mspel_mc(dst + 8, src + 8, stride, hmode, vmode, rnd); \
|
/third_party/ffmpeg/libavcodec/ |
D | vc1dsp.c | 597 int hmode, \ 606 if (hmode) { /* Vertical filter to apply, output to tmp */ \ 608 int shift = (shift_value[hmode] + shift_value[vmode]) >> 1; \ 625 OP(dst[i], (vc1_mspel_hor_filter_16bits(tptr + i, 1, hmode) + r) >> 7); \ 647 OP(dst[i], vc1_mspel_filter(src + i, 1, hmode, rnd)); \ 655 int hmode, \ 664 if (hmode) { /* Vertical filter to apply, output to tmp */ \ 666 int shift = (shift_value[hmode] + shift_value[vmode]) >> 1; \ 683 OP(dst[i], (vc1_mspel_hor_filter_16bits(tptr + i, 1, hmode) + r) >> 7); \ 705 OP(dst[i], vc1_mspel_filter(src + i, 1, hmode, rnd)); \
|
/third_party/ffmpeg/libavfilter/ |
D | avf_ahistogram.c | 52 int hmode; member 89 …{ "hmode", "set histograms mode", OFFSET(hmode), AV_OPT_TYPE_INT, {.i64=ABS}, 0, NB_HMODES-1, FLAG… 177 switch (s->hmode) { in config_output() 185 switch (s->hmode) { in config_output()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | ctrl_iface.c | 4327 char *pos, *end, *hmode; in ctrl_iface_get_capability_channels() local 4335 hmode = "B"; in ctrl_iface_get_capability_channels() 4338 hmode = "G"; in ctrl_iface_get_capability_channels() 4341 hmode = "A"; in ctrl_iface_get_capability_channels() 4344 hmode = "AD"; in ctrl_iface_get_capability_channels() 4349 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:", hmode); in ctrl_iface_get_capability_channels() 4377 char *pos, *end, *hmode; in ctrl_iface_get_capability_freq() local 4385 hmode = "B"; in ctrl_iface_get_capability_freq() 4388 hmode = "G"; in ctrl_iface_get_capability_freq() 4391 hmode = "A"; in ctrl_iface_get_capability_freq() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | ctrl_iface.c | 4795 char *pos, *end, *hmode; local 4803 hmode = "B"; 4806 hmode = "G"; 4809 hmode = "A"; 4812 hmode = "AD"; 4817 ret = os_snprintf(pos, end - pos, "Mode[%s] Channels:", hmode); 4845 char *pos, *end, *hmode; local 4853 hmode = "B"; 4856 hmode = "G"; 4859 hmode = "A"; [all …]
|
/third_party/ffmpeg/doc/ |
D | filters.texi | 27196 @item hmode
|