/third_party/libsnd/src/GSM610/ |
H A D | short_term.c | 342 #undef FILTER in Gsm_Short_Term_Analysis_Filter() macro 344 # define FILTER (* (S->fast \ in Gsm_Short_Term_Analysis_Filter() macro 349 # define FILTER Short_term_analysis_filtering in Gsm_Short_Term_Analysis_Filter() macro 356 FILTER (S, LARp, 13, s) ; in Gsm_Short_Term_Analysis_Filter() 360 FILTER (S, LARp, 14, s + 13) ; in Gsm_Short_Term_Analysis_Filter() 364 FILTER (S, LARp, 13, s + 27) ; in Gsm_Short_Term_Analysis_Filter() 368 FILTER (S, LARp, 120, s + 40) ; in Gsm_Short_Term_Analysis_Filter() 385 #undef FILTER in Gsm_Short_Term_Synthesis_Filter() macro 388 # define FILTER (* (S->fast \ in Gsm_Short_Term_Synthesis_Filter() macro 392 # define FILTER Short_term_synthesis_filterin in Gsm_Short_Term_Synthesis_Filter() macro [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_yadif.c | 50 #define FILTER(start, end, is_not_edge) \ macro 105 * with 6 subtracted from the width. This allows the FILTER macro to be in filter_line_c() 108 FILTER(0, w, 1) in filter_line_c() 128 FILTER(0, FFMIN(3, w), 0) in filter_edges() 137 FILTER(offset, w - 3, 1) in filter_edges() 139 FILTER(offset, w, 0) in filter_edges() 158 FILTER(0, w, 1) in filter_line_c_16bit() 178 FILTER(0, FFMIN(3, w), 0) in filter_edges_16bit() 187 FILTER(offset, w - 3, 1) in filter_edges_16bit() 189 FILTER(offse in filter_edges_16bit() [all...] |
H A D | vf_avgblur.c | 74 #define FILTER(name, type, btype, lutunused, areaunused, lutdiv) \ macro 165 FILTER(lut8, uint8_t, int32_t, , av_unused, LUT_DIV) 166 FILTER(lut16, uint16_t, int64_t, , av_unused, LUT_DIV) 168 FILTER(slow8, uint8_t, int32_t, av_unused, , SLOW_DIV) 169 FILTER(slow16, uint16_t, int64_t, av_unused, , SLOW_DIV)
|
H A D | af_atilt.c | 120 #define FILTER(name, type) \ macro 159 FILTER(fltp, float) 160 FILTER(dblp, double)
|
H A D | af_asupercut.c | 205 #define FILTER(name, type) \ macro 245 FILTER(fltp, float) 246 FILTER(dblp, double)
|
H A D | vf_signalstats.c | 308 #define FILTER(i, j) \ in filter8_tout() macro 313 #define FILTER3(j) (FILTER(-1, j) && FILTER(0, j) && FILTER(1, j)) in filter8_tout()
|
H A D | vf_fieldmatch.c | 217 #define FILTER(xm2, xm1, xp1, xp2) \ in calc_combed_score() macro 225 if (s1 > cthresh && FILTER(2, 1, 1, 2)) in calc_combed_score() 235 if (s1 > cthresh && s2 > cthresh && FILTER(2, -1, 1, 2)) in calc_combed_score() 246 if (s1 > cthresh && s2 > cthresh && FILTER(-2, -1, 1, 2)) in calc_combed_score() 257 if (s1 > cthresh && s2 > cthresh && FILTER(-2, -1, 1, -2)) in calc_combed_score() 266 if (s1 > cthresh && FILTER(-2, -1, -1, -2)) in calc_combed_score()
|
H A D | f_ebur128.c | 674 #define FILTER(Y, X, NUM, DEN) do { \ in filter_frame() macro 684 FILTER(y, x, ebur128->pre_b, ebur128->pre_a); // apply pre-filter in filter_frame() 687 FILTER(z, y, ebur128->rlb_b, ebur128->rlb_a); // apply RLB-filter in filter_frame()
|
/third_party/mesa3d/src/microsoft/vulkan/ |
H A D | dzn_util.c | 216 #define FILTER(__min, __mag, __mipmap) \ macro 224 [D3D12_FILTER_MIN_MAG_MIP_POINT] = FILTER(NEAREST, NEAREST, NEAREST), 225 [D3D12_FILTER_MIN_MAG_POINT_MIP_LINEAR] = FILTER(NEAREST, NEAREST, LINEAR), 226 [D3D12_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT] = FILTER(NEAREST, LINEAR, NEAREST), 227 [D3D12_FILTER_MIN_POINT_MAG_MIP_LINEAR] = FILTER(NEAREST, LINEAR, LINEAR), 228 [D3D12_FILTER_MIN_LINEAR_MAG_MIP_POINT] = FILTER(LINEAR, NEAREST, NEAREST), 229 [D3D12_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR] = FILTER(LINEAR, NEAREST, LINEAR), 230 [D3D12_FILTER_MIN_MAG_LINEAR_MIP_POINT] = FILTER(LINEAR, LINEAR, NEAREST), 231 [D3D12_FILTER_MIN_MAG_MIP_LINEAR] = FILTER(LINEAR, LINEAR, LINEAR),
|
/third_party/rust/crates/libc/ci/ |
H A D | build.sh | 5 # The FILTER environment variable can be used to select which target(s) to build. 6 # For example: set FILTER to vxworks to select the targets that has vxworks in name 209 if echo "$TARGET"|grep -q "$FILTER"; then 279 if echo "$TARGET"|grep -q "$FILTER"; then 294 if echo "$TARGET" | grep -q "$FILTER"; then
|
/third_party/ffmpeg/libavcodec/ |
H A D | h264_loopfilter.c | 379 #define FILTER(hv,dir,edge,intra)\ in h264_filter_mb_fast_internal() macro 393 FILTER(v,0,0,1); in h264_filter_mb_fast_internal() 396 FILTER(h,1,0,1); in h264_filter_mb_fast_internal() 398 FILTER(v,0,2,0); in h264_filter_mb_fast_internal() 400 FILTER(h,1,0,1); in h264_filter_mb_fast_internal() 401 FILTER(h,1,2,0); in h264_filter_mb_fast_internal() 403 FILTER(v,0,1,0); in h264_filter_mb_fast_internal() 404 FILTER(v,0,2,0); in h264_filter_mb_fast_internal() 405 FILTER(v,0,3,0); in h264_filter_mb_fast_internal() 407 FILTER( in h264_filter_mb_fast_internal() 412 #undef FILTER h264_filter_mb_fast_internal() macro [all...] |
H A D | diracdsp.c | 26 #define FILTER(src, stride) \ macro 39 dstv[x] = av_clip_uint8(FILTER(src+x, stride)); in dirac_hpel_filter() 42 dstc[x] = av_clip_uint8(FILTER(dstv+x, 1)); in dirac_hpel_filter() 45 dsth[x] = av_clip_uint8(FILTER(src+x, 1)); in dirac_hpel_filter()
|
/third_party/mbedtls/scripts/ |
H A D | output_env.sh | 43 FILTER="$1" 45 VERSION_STR=`echo "$VERSION_STR" | $FILTER`
|
/third_party/mbedtls/tests/ |
H A D | compat.sh | 91 FILTER="" 109 printf " -f|--filter\tOnly matching ciphersuites are tested (Default: '%s')\n" "$FILTER" 158 shift; FILTER=$1 247 NEW_LIST="$NEW_LIST $( echo "$i" | grep "$FILTER" | grep -v "$EXCLMODE" )" 256 if [ "X" != "X$FILTER" -o "X" != "X$EXCLUDE" ];
|
H A D | ssl-opt.sh | 110 FILTER='.*' 149 shift; FILTER=$1 1850 # Optimize filters: if $FILTER and $EXCLUDE can be expressed as shell 1860 case "$FILTER" in 1866 simple_filter="*$FILTER*";; 1878 ! echo "$1" | grep "$FILTER" | grep -q -v "$EXCLUDE"
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | hevc_mc.asm | 185 %define FILTER %5q 187 %define FILTER hevc_epel_filters_avx2_%1 193 %define FILTER %5q 195 %define FILTER hevc_epel_filters_sse4_%1 204 mova %3, [FILTER + %2q] ; get 2 first values of filters 205 mova %4, [FILTER + %2q+%%offset] ; get 2 last values of filters 221 %define FILTER r3srcq 223 %define FILTER %%table 229 mova m14, [FILTER + mxq] ; get 2 first values of filters 230 mova m15, [FILTER [all...] |
H A D | vp9mc.asm | 55 %macro FILTER 1 108 FILTER ssse3 label 111 FILTER sse2 label 114 FILTER 16bpp label
|
H A D | vp9lpf.asm | 134 FILTER%7_INIT %1, l, %3, %6 + 0 135 FILTER%7_INIT %2, h, %4, %6 + mmsize
|
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_yadif.asm | 88 %macro FILTER 3 222 FILTER 1, prevq, curq 226 FILTER 0, curq, nextq
|
H A D | vf_bwdif.asm | 57 %macro FILTER 5 221 FILTER 1, prevq, curq, %1, %2 224 FILTER 0, curq, nextq, %1, %2
|
H A D | yadif-16.asm | 140 %macro FILTER 3 274 FILTER 1, prevq, curq 278 FILTER 0, curq, nextq
|
H A D | yadif-10.asm | 109 %macro FILTER 3 238 FILTER 1, prevq, curq 242 FILTER 0, curq, nextq
|
/third_party/skia/modules/skottie/src/effects/ |
H A D | FractalNoiseEffect.cpp | 207 template <unsigned LOOPS, NoiseFilter FILTER, NoiseFractal FRACTAL> 222 static_assert(static_cast<size_t>(FILTER) < SK_ARRAY_COUNT(gFilters)); in noise_effect() 227 gFilters[static_cast<size_t>(FILTER)], in noise_effect()
|
/third_party/ffmpeg/tests/fate/ |
H A D | filter-video.mak | 226 $(FATE_FILTER_OVERLAY_ALPHA): CMD = framecrc -i $(SRC) -sws_flags +accurate_rnd+bitexact -vf $(FILTER) -frames:v 1 228 fate-filter-overlay_yuv420_yuva420: FILTER = "scale,format=yuva420p[over];color=black:128x128,format=yuv420p[main];[main][over]overlay=format=yuv420" macro 229 fate-filter-overlay_yuv422_yuva422: FILTER = "scale,format=yuva422p[over];color=black:128x128,format=yuv422p[main];[main][over]overlay=format=yuv422" macro 230 fate-filter-overlay_yuv444_yuva444: FILTER = "scale,format=yuva444p[over];color=black:128x128,format=yuv444p[main];[main][over]overlay=format=yuv444" macro 231 fate-filter-overlay_rgb_rgba: FILTER = "format=rgba[over];color=black:128x128,format=rgb24[main];[main][over]overlay=format=rgb" macro 232 fate-filter-overlay_gbrp_gbrap: FILTER = "scale,format=gbrap[over];color=black:128x128,format=gbrp[main];[main][over]overlay=format=gbrp" macro 234 fate-filter-overlay_yuva420_yuva420: FILTER = "scale,format=yuva420p[over];color=black:128x128,format=yuva420p[main];[main][over]overlay=format=yuv420" macro 235 fate-filter-overlay_yuva422_yuva422: FILTER = "scale,format=yuva422p[over];color=black:128x128,format=yuva422p[main];[main][over]overlay=format=yuv422" macro 236 fate-filter-overlay_yuva444_yuva444: FILTER = "scale,format=yuva444p[over];color=black:128x128,format=yuva444p[main];[main][over]overlay=format=yuv444" macro 237 fate-filter-overlay_rgba_rgba: FILTER macro 238 fate-filter-overlay_gbrap_gbrap: FILTER = "scale,format=gbrap[over];color=black:128x128,format=gbrap[main];[main][over]overlay=format=gbrp" global() macro [all...] |
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
H A D | genIndexFilters.bat | 73 # <ID>:alias:<FILTER>;<REMAINDER>
|