Home
last modified time | relevance | path

Searched refs:OPT (Results 1 - 25 of 27) sorted by relevance

12

/third_party/ffmpeg/libavcodec/x86/
H A Drv40dsp_init.c73 #define QPEL_FUNC_DECL(OP, SIZE, PH, PV, OPT) \ in DECLARE_WEIGHT()
74 static void OP ## rv40_qpel ##SIZE ##_mc ##PH ##PV ##OPT(uint8_t *dst, \ in DECLARE_WEIGHT()
85 ff_put_rv40_qpel_h ##OPT(tmp + i, SIZE, src + i, stride, \ in DECLARE_WEIGHT()
88 ff_ ##OP ##rv40_qpel_v ##OPT(dst + i, stride, tmpptr + i, \ in DECLARE_WEIGHT()
92 ff_ ##OP ##rv40_qpel_v ## OPT(dst + i, stride, src + i, \ in DECLARE_WEIGHT()
96 ff_ ##OP ##rv40_qpel_h ## OPT(dst + i, stride, src + i, \ in DECLARE_WEIGHT()
103 #define QPEL_FUNCS_DECL(OP, PH, PV, OPT) \
104 QPEL_FUNC_DECL(OP, 8, PH, PV, OPT) \
105 QPEL_FUNC_DECL(OP, 16, PH, PV, OPT)
108 #define QPEL_MC_DECL(OP, OPT) \
[all...]
H A Dvp8dsp_init.c119 #define TAP_W16(OPT, FILTERTYPE, TAPTYPE) \
120 static void ff_put_vp8_ ## FILTERTYPE ## 16_ ## TAPTYPE ## _ ## OPT( \
124 ff_put_vp8_ ## FILTERTYPE ## 8_ ## TAPTYPE ## _ ## OPT( \
126 ff_put_vp8_ ## FILTERTYPE ## 8_ ## TAPTYPE ## _ ## OPT( \
129 #define TAP_W8(OPT, FILTERTYPE, TAPTYPE) \
130 static void ff_put_vp8_ ## FILTERTYPE ## 8_ ## TAPTYPE ## _ ## OPT( \
134 ff_put_vp8_ ## FILTERTYPE ## 4_ ## TAPTYPE ## _ ## OPT( \
136 ff_put_vp8_ ## FILTERTYPE ## 4_ ## TAPTYPE ## _ ## OPT( \
150 #define HVTAP(OPT, ALIGN, TAPNUMX, TAPNUMY, SIZE, MAXHEIGHT) \
151 static void ff_put_vp8_epel ## SIZE ## _h ## TAPNUMX ## v ## TAPNUMY ## _ ## OPT( \
[all...]
H A Dh264dsp_init.c29 #define IDCT_ADD_FUNC(NUM, DEPTH, OPT) \
30 void ff_h264_idct ## NUM ## _add_ ## DEPTH ## _ ## OPT(uint8_t *dst, \
49 #define IDCT_ADD_REP_FUNC(NUM, REP, DEPTH, OPT) \
50 void ff_h264_idct ## NUM ## _add ## REP ## _ ## DEPTH ## _ ## OPT \
65 #define IDCT_ADD_REP_FUNC2(NUM, REP, DEPTH, OPT) \
66 void ff_h264_idct ## NUM ## _add ## REP ## _ ## DEPTH ## _ ## OPT \
90 #define LF_FUNC(DIR, TYPE, DEPTH, OPT) \
91 void ff_deblock_ ## DIR ## _ ## TYPE ## _ ## DEPTH ## _ ## OPT(uint8_t *pix, \
96 #define LF_IFUNC(DIR, TYPE, DEPTH, OPT) \
97 void ff_deblock_ ## DIR ## _ ## TYPE ## _ ## DEPTH ## _ ## OPT(uint8_
[all...]
H A Dh264_intrapred_init.c30 #define PRED4x4(TYPE, DEPTH, OPT) \
31 void ff_pred4x4_ ## TYPE ## _ ## DEPTH ## _ ## OPT (uint8_t *src, \
51 #define PRED8x8(TYPE, DEPTH, OPT) \
52 void ff_pred8x8_ ## TYPE ## _ ## DEPTH ## _ ## OPT (uint8_t *src, \
61 #define PRED8x8L(TYPE, DEPTH, OPT)\
62 void ff_pred8x8l_ ## TYPE ## _ ## DEPTH ## _ ## OPT (uint8_t *src, \
90 #define PRED16x16(TYPE, DEPTH, OPT)\
91 void ff_pred16x16_ ## TYPE ## _ ## DEPTH ## _ ## OPT (uint8_t *src, \
H A Dh264chroma_init.c52 #define CHROMA_MC(OP, NUM, DEPTH, OPT) \
53 void ff_ ## OP ## _h264_chroma_mc ## NUM ## _ ## DEPTH ## _ ## OPT \
H A Dh264_qpel.c370 #define LUMA_MC_OP(OP, NUM, DEPTH, TYPE, OPT) \ in QPEL_H264()
371 void ff_ ## OP ## _h264_qpel ## NUM ## _ ## TYPE ## _ ## DEPTH ## _ ## OPT \ in QPEL_H264()
374 #define LUMA_MC_4(DEPTH, TYPE, OPT) \
375 LUMA_MC_OP(put, 4, DEPTH, TYPE, OPT) \
376 LUMA_MC_OP(avg, 4, DEPTH, TYPE, OPT)
378 #define LUMA_MC_816(DEPTH, TYPE, OPT) \
379 LUMA_MC_OP(put, 8, DEPTH, TYPE, OPT) \
380 LUMA_MC_OP(avg, 8, DEPTH, TYPE, OPT) \
381 LUMA_MC_OP(put, 16, DEPTH, TYPE, OPT) \
382 LUMA_MC_OP(avg, 16, DEPTH, TYPE, OPT)
[all...]
H A Dhevcdsp_init.c31 #define LFC_FUNC(DIR, DEPTH, OPT) \
32 void ff_hevc_ ## DIR ## _loop_filter_chroma_ ## DEPTH ## _ ## OPT(uint8_t *pix, ptrdiff_t stride, int *tc, uint8_t *no_p, uint8_t *no_q);
34 #define LFL_FUNC(DIR, DEPTH, OPT) \
35 void ff_hevc_ ## DIR ## _loop_filter_luma_ ## DEPTH ## _ ## OPT(uint8_t *pix, ptrdiff_t stride, int beta, int *tc, uint8_t *no_p, uint8_t *no_q);
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_nir.c519 #define OPT(pass, ...) ({ \ macro
539 OPT(nir_split_array_vars, nir_var_function_temp); in brw_nir_optimize()
540 OPT(nir_shrink_vec_array_vars, nir_var_function_temp); in brw_nir_optimize()
541 OPT(nir_opt_deref); in brw_nir_optimize()
542 if (OPT(nir_opt_memcpy)) in brw_nir_optimize()
543 OPT(nir_split_var_copies); in brw_nir_optimize()
544 OPT(nir_lower_vars_to_ssa); in brw_nir_optimize()
550 OPT(nir_opt_find_array_copies); in brw_nir_optimize()
552 OPT(nir_opt_copy_prop_vars); in brw_nir_optimize()
553 OPT(nir_opt_dead_write_var in brw_nir_optimize()
[all...]
H A Dbrw_vec4.cpp2393 #define OPT(pass, args...) ({ \ in run() macro
2426 OPT(opt_predicated_break, this); in run()
2427 OPT(opt_reduce_swizzle); in run()
2428 OPT(dead_code_eliminate); in run()
2429 OPT(dead_control_flow_eliminate, this); in run()
2430 OPT(opt_copy_propagation); in run()
2431 OPT(opt_cmod_propagation); in run()
2432 OPT(opt_cse); in run()
2433 OPT(opt_algebraic); in run()
2434 OPT(opt_register_coalesc in run()
[all...]
H A Dbrw_fs.cpp6047 #define OPT(pass, args...) ({ \
6077 OPT(split_virtual_grfs);
6085 OPT(dead_code_eliminate);
6087 OPT(remove_extra_rounding_modes);
6094 OPT(remove_duplicate_mrf_writes);
6096 OPT(opt_algebraic);
6097 OPT(opt_cse);
6098 OPT(opt_copy_propagation);
6099 OPT(opt_predicated_break, this);
6100 OPT(opt_cmod_propagatio
[all...]
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_nir.c70 #define OPT(nir, pass, ...) \ macro
91 progress |= OPT(s, nir_lower_alu_to_scalar, NULL, NULL); in ir3_optimize_loop()
92 progress |= OPT(s, nir_lower_phis_to_scalar, false); in ir3_optimize_loop()
94 progress |= OPT(s, nir_copy_prop); in ir3_optimize_loop()
95 progress |= OPT(s, nir_opt_deref); in ir3_optimize_loop()
96 progress |= OPT(s, nir_opt_dce); in ir3_optimize_loop()
97 progress |= OPT(s, nir_opt_cse); in ir3_optimize_loop()
99 progress |= OPT(s, nir_opt_find_array_copies); in ir3_optimize_loop()
100 progress |= OPT(s, nir_opt_copy_prop_vars); in ir3_optimize_loop()
101 progress |= OPT( in ir3_optimize_loop()
[all...]
/third_party/skia/third_party/externals/libpng/contrib/libtests/
H A Dtimepng.c482 # define OPT(name) else if (strcmp(opt, #name) == 0)\ in main() macro
485 OPT(STRIP_16); in main()
486 OPT(STRIP_ALPHA); in main()
487 OPT(PACKING); in main()
488 OPT(PACKSWAP); in main()
489 OPT(EXPAND); in main()
490 OPT(INVERT_MONO); in main()
491 OPT(SHIFT); in main()
492 OPT(BGR); in main()
493 OPT(SWAP_ALPH in main()
[all...]
/third_party/ltp/testcases/kernel/hotplug/memory_hotplug/
H A Dmemtoy.h74 #define set_option(OPT) gcp->options |= (OPTION_##OPT)
75 #define clear_option(OPT) gcp->options &= ~(OPION_##OPTT)
76 #define is_option(OPT) ((gcp->options & OPTION_##OPT) != 0)
/third_party/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_compiler_nir.c135 #define OPT(nir, pass, ...) ({ \ macro
149 progress |= OPT(s, nir_opt_copy_prop_vars); in etna_optimize_loop()
150 progress |= OPT(s, nir_opt_shrink_stores, true); in etna_optimize_loop()
151 progress |= OPT(s, nir_opt_shrink_vectors); in etna_optimize_loop()
152 progress |= OPT(s, nir_copy_prop); in etna_optimize_loop()
153 progress |= OPT(s, nir_opt_dce); in etna_optimize_loop()
154 progress |= OPT(s, nir_opt_cse); in etna_optimize_loop()
155 progress |= OPT(s, nir_opt_peephole_select, 16, true, true); in etna_optimize_loop()
156 progress |= OPT(s, nir_opt_intrinsics); in etna_optimize_loop()
157 progress |= OPT( in etna_optimize_loop()
[all...]
/third_party/skia/third_party/externals/libwebp/examples/
H A Dunicode.h56 #define WFOPEN(ARG, OPT) _wfopen((const W_CHAR*)ARG, TO_W_CHAR(OPT))
83 #define WFOPEN(ARG, OPT) fopen(ARG, OPT)
/third_party/ffmpeg/tools/
H A Dpatcheck14 OPT="-nH"
32 $GREP $OPT '^+' $* | $GREP -v ':+++'| $EGREP --color=always -- "$arg"> $TMP && printf "\n$msg\n"
41 $GREP $OPT '^+' $* | $GREP -v ':+++' | $EGREP -v -- "$varg" | $EGREP --color=always -- "$arg" > $TMP && printf "\n$msg\n"
66 $EGREP $OPT '^\+ *(const *|)static' $*| $EGREP --color=always '[^=]= *(0|NULL)[^0-9a-zA-Z]'> $TMP && printf '\nuseless 0 init\n'
96 #$EGREP $OPT '^\+.*const ' $*| $GREP -v 'static'> $TMP && printf '\nnon static const\n'
121 $EGREP -B2 $OPT '^(\+|) *('"$ERE_TYPES"'|# *define)' $* | $EGREP -A2 --color=always '(:|-)\+[^/]*/(\*([^*]|$)|/([^/]|$))' > $TMP && printf "\n Non doxy comments\n"
/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/
H A Dir2_nir.c63 #define OPT(nir, pass, ...) \ macro
79 progress |= OPT(s, nir_opt_copy_prop_vars); in ir2_optimize_loop()
80 progress |= OPT(s, nir_copy_prop); in ir2_optimize_loop()
81 progress |= OPT(s, nir_opt_dce); in ir2_optimize_loop()
82 progress |= OPT(s, nir_opt_cse); in ir2_optimize_loop()
83 /* progress |= OPT(s, nir_opt_gcm, true); */ in ir2_optimize_loop()
84 progress |= OPT(s, nir_opt_peephole_select, UINT_MAX, true, true); in ir2_optimize_loop()
85 progress |= OPT(s, nir_opt_intrinsics); in ir2_optimize_loop()
86 progress |= OPT(s, nir_opt_algebraic); in ir2_optimize_loop()
87 progress |= OPT( in ir2_optimize_loop()
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dglsl_parser_extras.cpp2369 #define OPT(PASS, ...) do { \ macro
2383 OPT(lower_instructions, ir, SUB_TO_ADD_NEG);
2386 OPT(do_function_inlining, ir);
2387 OPT(do_dead_functions, ir);
2388 OPT(do_structure_splitting, ir);
2390 OPT(propagate_invariance, ir);
2391 OPT(do_if_simplification, ir);
2392 OPT(opt_flatten_nested_if_blocks, ir);
2393 OPT(do_copy_propagation_elements, ir);
2396 OPT(opt_flip_matrice
2438 #undef OPT global() macro
[all...]
/third_party/musl/Benchmark/scripts/
H A Drun_dlopen.sh48 while getopts "hp:r:" OPT
50 case "$OPT" in
/third_party/mesa3d/src/broadcom/vulkan/
H A Dv3dv_pipeline.c254 #define OPT(pass, ...) ({ \ macro
269 OPT(nir_split_array_vars, nir_var_function_temp); in nir_optimize()
270 OPT(nir_shrink_vec_array_vars, nir_var_function_temp); in nir_optimize()
271 OPT(nir_opt_deref); in nir_optimize()
272 OPT(nir_lower_vars_to_ssa); in nir_optimize()
278 OPT(nir_opt_find_array_copies); in nir_optimize()
281 OPT(nir_remove_dead_variables, in nir_optimize()
287 OPT(nir_opt_copy_prop_vars); in nir_optimize()
288 OPT(nir_opt_dead_write_vars); in nir_optimize()
289 OPT(nir_opt_combine_store in nir_optimize()
[all...]
/third_party/lzma/CPP/
H A DBuild.mak45 LFLAGS = $(LFLAGS) -OPT:NOWIN98
133 LFLAGS = $(LFLAGS) -nologo -OPT:REF -OPT:ICF -INCREMENTAL:NO
/third_party/curl/tests/
H A Dtest1119.pl114 while(s/\W(CURL(AUTH|E|H|MOPT|OPT|SHOPT|UE|M|SSH|SSLBACKEND|HEADER|FORM|FTP|PIPE|MIMEOPT|GSSAPI|ALTSVC|PROTO|PROXY|UPART|USESSL|_READFUNC|_WRITEFUNC|_CSELECT|_FORMADD|_IPRESOLVE|_REDIR|_RTSPREQ|_TIMECOND|_VERSION)_[a-zA-Z0-9_]+)//) {
H A Dtest1139.pl98 if(/^\#define (CURL(OPT|INFO|MOPT)_\w+) (.*)/) {
112 if($l =~ /(CURL(OPT|INFO|MOPT)_\w+) *([0-9.]*) *([0-9.-]*) *([0-9.]*)/) {
123 if($type eq "OPT") {
/third_party/rust/crates/nix/test/sys/
H A Dtest_socket.rs2503 fn test_recverr_impl<SA, OPT, TESTF>( in test_recverr_impl()
2506 opt: OPT, in test_recverr_impl()
2512 OPT: SetSockOpt<Val = bool>, in test_recverr_impl()
/third_party/python/
H A Dconfigure893 OPT
4412 # compiler flags are generated in two sets, BASECFLAGS and OPT. OPT is just
4414 # just to get things to compile and link. Users are free to override OPT
8757 # XXX Shouldn't the code above that fiddles with BASECFLAGS and OPT be
8766 # see if OPT was set and one that does BASECFLAGS setting based upon
8768 # user set OPT.
8830 # tweak OPT based on compiler and platform, only if the user didn't set
8834 if test "${OPT-unset}" = "unset"
8855 OPT
[all...]

Completed in 33 milliseconds

12