Home
last modified time | relevance | path

Searched refs:opt2 (Results 1 – 25 of 29) sorted by relevance

12

/third_party/ffmpeg/libswscale/x86/
Dswscale.c299 #define VSCALE_FUNCS(opt1, opt2) \ argument
301 VSCALE_FUNC(9, opt2); \
302 VSCALE_FUNC(10, opt2); \
386 #define ASSIGN_SCALE_FUNC2(hscalefn, filtersize, opt1, opt2) do { \ in ff_sws_init_swscale_x86() argument
388 hscalefn = c->dstBpc <= 14 ? ff_hscale8to15_ ## filtersize ## _ ## opt2 : \ in ff_sws_init_swscale_x86()
391 hscalefn = c->dstBpc <= 14 ? ff_hscale9to15_ ## filtersize ## _ ## opt2 : \ in ff_sws_init_swscale_x86()
394 hscalefn = c->dstBpc <= 14 ? ff_hscale10to15_ ## filtersize ## _ ## opt2 : \ in ff_sws_init_swscale_x86()
397 hscalefn = c->dstBpc <= 14 ? ff_hscale12to15_ ## filtersize ## _ ## opt2 : \ in ff_sws_init_swscale_x86()
400 hscalefn = c->dstBpc <= 14 ? ff_hscale14to15_ ## filtersize ## _ ## opt2 : \ in ff_sws_init_swscale_x86()
404 hscalefn = c->dstBpc <= 14 ? ff_hscale16to15_ ## filtersize ## _ ## opt2 : \ in ff_sws_init_swscale_x86()
[all …]
/third_party/typescript/src/server/
DtypingsCache.ts66 function typeAcquisitionChanged(opt1: TypeAcquisition, opt2: TypeAcquisition): boolean {
67 return opt1.enable !== opt2.enable ||
68 !setIsEqualTo(opt1.include, opt2.include) ||
69 !setIsEqualTo(opt1.exclude, opt2.exclude);
72 function compilerOptionsChanged(opt1: CompilerOptions, opt2: CompilerOptions): boolean {
74 return getAllowJSCompilerOption(opt1) !== getAllowJSCompilerOption(opt2);
/third_party/libabigail/tests/
Dtest-cxx-compat.cc23 optional<bool> opt2(true);
24 REQUIRE(opt2.has_value());
25 CHECK(opt2.value() == true);
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
Doptional_test.cc340 constexpr absl::optional<ConstexprType> opt2{absl::in_place_t(), {1, 2}}; in TEST() local
341 static_assert(opt2, ""); in TEST()
342 static_assert((*opt2).x == ConstexprType::kCtorInitializerList, ""); in TEST()
376 constexpr absl::optional<ConstexprType> opt2{2}; in TEST() local
377 static_assert(opt2, ""); in TEST()
378 static_assert(ConstexprType::kCtorInt == (*opt2).x, ""); in TEST()
538 absl::optional<Listenable> opt2(absl::in_place, 1, 2); in TEST() local
539 EXPECT_TRUE(opt2); in TEST()
592 const absl::optional<int> empty, opt1 = 1, opt2 = 2; in TEST() local
606 opt1_to_opt2 = opt2; in TEST()
[all …]
/third_party/ffmpeg/libavcodec/x86/
Dhevcdsp_init.c177 #define mc_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) … argument
183 …ff_hevc_put_hevc_##name##width3##_10_##opt2(dst+ width2, src+ width4, _srcstride, height, mx, my, …
186 #define mc_bi_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) … argument
193 …ff_hevc_put_hevc_bi_##name##width3##_10_##opt2(dst+width4, dststride, src+width4, _srcstride, src2…
197 #define mc_uni_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) … argument
204 …ff_hevc_put_hevc_uni_##name##width3##_10_##opt2(dst+width4, dststride, src+width4, _srcstride, …
208 #define mc_rep_mixs_10(name, width1, width2, width3, opt1, opt2, width4) \ argument
209 mc_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \
210 mc_bi_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4) \
211 mc_uni_rep_mix_10(name, width1, width2, width3, opt1, opt2, width4)
[all …]
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
Dcommon.h12 #define OPT_COLLIDING(prog, opt1, opt2) do { \ argument
15 prog, opt1, opt2); \
/third_party/node/test/sequential/
Dtest-dgram-bind-shared-ports.js101 const opt2 = { address, port: common.PORT, exclusive: false }; variable
106 socket2.bind(opt2, common.mustCall(() => {
/third_party/cups-filters/filter/foomatic-rip/
Dfoomaticrip.c310 option_t *opt, *opt2; in process_cmdline_options() local
395 if ((opt2 = find_option("Binding"))) in process_cmdline_options()
396 option_set_value(opt2, optset, "LongEdge"); in process_cmdline_options()
401 if ((opt2 = find_option("Binding"))) in process_cmdline_options()
402 option_set_value(opt2, optset, "ShortEdge"); in process_cmdline_options()
/third_party/lwip/src/netif/ppp/
Dccp.c1388 static const char *method_name(ccp_options *opt, ccp_options *opt2) { in method_name() argument
1391 LWIP_UNUSED_ARG(opt2); in method_name()
1424 if (opt2 != NULL && opt2->deflate_size != opt->deflate_size) in method_name()
1427 opt->deflate_size, opt2->deflate_size); in method_name()
1436 if (opt2 != NULL && opt2->bsd_bits != opt->bsd_bits) in method_name()
1438 opt->bsd_bits, opt2->bsd_bits); in method_name()
/third_party/typescript/tests/baselines/reference/
DfunctionImplementations.js108 function opt2(n = { x: null, y: undefined }) { function
279 function opt2(n) {
DfunctionImplementations.symbols218 function opt2(n = { x: null, y: undefined }) {
219 >opt2 : Symbol(opt2, Decl(functionImplementations.ts, 103, 1))
DfunctionImplementations.types263 function opt2(n = { x: null, y: undefined }) {
264 >opt2 : (n?: { x: any; y: any; }) => void
/third_party/node/test/parallel/
Dtest-crypto-keygen.js1015 for (const [opt1, opt2] of incompatible) {
1019 [opt2]: allOpts[opt2]
1025 `"${opt2}"`
/third_party/typescript/tests/cases/conformance/functions/
DfunctionImplementations.ts109 function opt2(n = { x: null, y: undefined }) { function
/third_party/openssl/crypto/sha/asm/
Dsha1-armv4-large.pl112 my ($a,$b,$c,$d,$e,$opt1,$opt2)=@_;
127 $opt2 @ F_xx_xx
/third_party/popt/src/
Dpopt.c565 { const struct poptOption * opt2; in findOption() local
569 opt2 = findOption(arg.opt, longName, longNameLen, shortName, callback, in findOption()
571 if (opt2 == NULL) continue; in findOption()
576 return opt2; in findOption()
/third_party/openssl/test/recipes/80-test_cmp_http_data/
Dtest_verification.csv1 … -ignore_keyusage, -unprotected_errors, -extracertsout,val,val2, -opt1,arg1, -opt2,arg2, -opt3,arg3
/third_party/ffmpeg/doc/
Dfftools-common-opts.texi173 @item -sources @var{device}[,@var{opt1}=@var{val1}[,@var{opt2}=@var{val2}]...]
181 @item -sinks @var{device}[,@var{opt1}=@var{val1}[,@var{opt2}=@var{val2}]...]
Dbitstream_filters.texi21 ffmpeg -i INPUT -c:v copy -bsf:v filter1[=opt1=str1:opt2=str2][,filter2] OUTPUT
/third_party/ffmpeg/libavfilter/
Dvf_coreimage.m485 … // parse filter string (filter=name@opt=val@opt2=val2#name2@opt3=val3) for filters separated by #
503 // parse filters for option key-value pairs (opt=val@opt2=val2) separated by @
/third_party/python/Lib/test/
Dtest_optparse.py363 opt2 = self.parser.get_option("--verbose")
366 self.assertTrue(opt1 is opt2 is opt3 is opt4)
/third_party/lwip/src/include/lwip/
Dopt.h2803 #define LWIP_HOOK_TCP_INPACKET_PCB(pcb, hdr, optlen, opt1len, opt2, p) argument
/third_party/cups-filters/utils/
Dcups-browsed.c2748 char *opt1, *opt2, constraint[100], *ppdsizename, *temp; in generate_cluster_conflicts() local
2820 for(opt2 = cupsArrayFirst(printer_second_options); opt2; in generate_cluster_conflicts()
2821 opt2 = cupsArrayNext(printer_second_options)) { in generate_cluster_conflicts()
2822 if (check_printer_with_options(cluster_name, i, opt1, k, opt2)) in generate_cluster_conflicts()
2825 !strcasecmp(opt2, AUTO_OPTION)) in generate_cluster_conflicts()
2827 if (!strcmp(opt1, "Gray") || !strcmp(opt2, "Gray")) in generate_cluster_conflicts()
2831 opt1,ppd_keywords[k], opt2); in generate_cluster_conflicts()
2837 opt2, ppd_keywords[i], opt1); in generate_cluster_conflicts()
/third_party/openssl/include/openssl/
Dasn1t.h.in295 * ASN1_SOMEOTHER *opt2;
/third_party/typescript/lib/
Dtsserverlibrary.js153861 function typeAcquisitionChanged(opt1, opt2) { argument
153862 return opt1.enable !== opt2.enable ||
153863 !setIsEqualTo(opt1.include, opt2.include) ||
153864 !setIsEqualTo(opt1.exclude, opt2.exclude);
153866 function compilerOptionsChanged(opt1, opt2) { argument
153868 return ts.getAllowJSCompilerOption(opt1) !== ts.getAllowJSCompilerOption(opt2);

12