Home
last modified time | relevance | path

Searched refs:fs2 (Results 1 – 23 of 23) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DcallWithSpread3.js9 declare function fs2(a: string, b: string): void;
15 fs2('a', ...s2); // error on ...s2
16 fs2('a', 'b', 'c', ...s2); // error on 'c' and ...s2
17 fs2('a', 'b', ...s2, 'c'); // error on ...s2 and 'c'
18 fs2('a', 'b', 'c', ...s2, 'd'); // error on 'c', ...s2 and 'd'
19 fs2(...s2, 'a'); // error on 'a'
20 fs2(...s3); // error on ...s3
46 fs2.apply(void 0, __spreadArray(['a'], s2)); // error on ...s2
47 fs2.apply(void 0, __spreadArray(['a', 'b', 'c'], s2)); // error on 'c' and ...s2
48 fs2.apply(void 0, __spreadArray(__spreadArray(['a', 'b'], s2), ['c'])); // error on ...s2 and 'c'
[all …]
DcallWithSpread3.symbols20 declare function fs2(a: string, b: string): void;
21 >fs2 : Symbol(fs2, Decl(callWithSpread3.ts, 5, 50))
46 fs2('a', ...s2); // error on ...s2
47 >fs2 : Symbol(fs2, Decl(callWithSpread3.ts, 5, 50))
50 fs2('a', 'b', 'c', ...s2); // error on 'c' and ...s2
51 >fs2 : Symbol(fs2, Decl(callWithSpread3.ts, 5, 50))
54 fs2('a', 'b', ...s2, 'c'); // error on ...s2 and 'c'
55 >fs2 : Symbol(fs2, Decl(callWithSpread3.ts, 5, 50))
58 fs2('a', 'b', 'c', ...s2, 'd'); // error on 'c', ...s2 and 'd'
59 >fs2 : Symbol(fs2, Decl(callWithSpread3.ts, 5, 50))
[all …]
DcallWithSpread3.types20 declare function fs2(a: string, b: string): void;
21 >fs2 : (a: string, b: string) => void
46 fs2('a', ...s2); // error on ...s2
47 >fs2('a', ...s2) : void
48 >fs2 : (a: string, b: string) => void
53 fs2('a', 'b', 'c', ...s2); // error on 'c' and ...s2
54 >fs2('a', 'b', 'c', ...s2) : void
55 >fs2 : (a: string, b: string) => void
62 fs2('a', 'b', ...s2, 'c'); // error on ...s2 and 'c'
63 >fs2('a', 'b', ...s2, 'c') : void
[all …]
DcallWithSpread3.errors.txt23 declare function fs2(a: string, b: string): void;
29 fs2('a', ...s2); // error on ...s2
32 fs2('a', 'b', 'c', ...s2); // error on 'c' and ...s2
35 fs2('a', 'b', ...s2, 'c'); // error on ...s2 and 'c'
38 fs2('a', 'b', 'c', ...s2, 'd'); // error on 'c', ...s2 and 'd'
41 fs2(...s2, 'a'); // error on 'a'
44 fs2(...s3); // error on ...s3
/third_party/typescript/tests/cases/conformance/expressions/functionCalls/
DcallWithSpread3.ts8 declare function fs2(a: string, b: string): void; function
14 fs2('a', ...s2); // error on ...s2
15 fs2('a', 'b', 'c', ...s2); // error on 'c' and ...s2
16 fs2('a', 'b', ...s2, 'c'); // error on ...s2 and 'c'
17 fs2('a', 'b', 'c', ...s2, 'd'); // error on 'c', ...s2 and 'd'
18 fs2(...s2, 'a'); // error on 'a'
19 fs2(...s3); // error on ...s3
/third_party/ffmpeg/libavfilter/
Dvf_ssim.c169 int64_t fs2 = s2; in ssim_end1x() local
172 int64_t vars = fss * 64 - fs1 * fs1 - fs2 * fs2; in ssim_end1x()
173 int64_t covar = fs12 * 64 - fs1 * fs2; in ssim_end1x()
175 return (float)(2 * fs1 * fs2 + ssim_c1) * (float)(2 * covar + ssim_c2) in ssim_end1x()
176 / ((float)(fs1 * fs1 + fs2 * fs2 + ssim_c1) * (float)(vars + ssim_c2)); in ssim_end1x()
185 int fs2 = s2; in ssim_end1() local
188 int vars = fss * 64 - fs1 * fs1 - fs2 * fs2; in ssim_end1()
189 int covar = fs12 * 64 - fs1 * fs2; in ssim_end1()
191 return (float)(2 * fs1 * fs2 + ssim_c1) * (float)(2 * covar + ssim_c2) in ssim_end1()
192 / ((float)(fs1 * fs1 + fs2 * fs2 + ssim_c1) * (float)(vars + ssim_c2)); in ssim_end1()
/third_party/ffmpeg/libavfilter/x86/
Dvf_ssim.asm191 ; m1 = fs1, m2 = fs2, m3 = fss, m4 = fs12
194 pmulld m5, m1, m2 ; fs1 * fs2
196 pmulld m2, m2 ; fs2 * fs2
201 ; m1 = fs1 * fs1, m2 = fs2 * fs2, m3 = variance, m4 = covariance, m5 = fs1 * fs2
203 paddd m5, m5 ; 2 * fs1 * fs2
204 paddd m1, m2 ; fs1 * fs1 + fs2 * fs2
207 paddd m5, [ssim_c1] ; 2 * fs1 * fs2 + ssim_c1
208 paddd m1, [ssim_c1] ; fs1 * fs1 + fs2 * fs2 + ssim_c1
/third_party/ffmpeg/tests/
Dtiny_ssim.c91 type fs2 = s2; in ssim_end1() local
94 type vars = fss*64 - fs1*fs1 - fs2*fs2; in ssim_end1()
95 type covar = fs12*64 - fs1*fs2; in ssim_end1()
96 return (float)(2*fs1*fs2 + ssim_c1) * (float)(2*covar + ssim_c2) in ssim_end1()
97 / ((float)(fs1*fs1 + fs2*fs2 + ssim_c1) * (float)(vars + ssim_c2)); in ssim_end1()
/third_party/ffmpeg/libavformat/
Dsccdec.c85 int hh2, mm2, ss2, fs2; in scc_read_header() local
110 if (av_sscanf(line2, "%d:%d:%d%*[:;]%d", &hh2, &mm2, &ss2, &fs2) != 4) in scc_read_header()
113 ts_end = (hh2 * 3600LL + mm2 * 60LL + ss2) * 1000LL + fs2 * 33; in scc_read_header()
/third_party/boost/libs/context/src/asm/
Dontop_riscv64_sysv_elf_gas.S72 fsd fs2, 0x10(sp)
110 fld fs2, 0x10(sp)
Djump_riscv64_sysv_elf_gas.S72 fsd fs2, 0x10(sp)
110 fld fs2, 0x10(sp)
/third_party/musl/src/setjmp/riscv64/
Dsetjmp.S28 fsd fs2, 128(a0)
Dlongjmp.S28 fld fs2, 128(a0)
/third_party/uboot/u-boot-2020.01/post/lib_powerpc/
Dcpu_asm.h146 #define ASM_12F(opcode, fd, fs1, fs2) ((opcode) + \ argument
149 ((fs2) << 11))
/third_party/libunwind/src/riscv/
Dsetcontext.S44 LOAD_FP fs2, FREG(18)
Dgetcontext.S68 STORE_FP fs2, FREG(18)
/third_party/flutter/skia/tests/
DSkNxTest.cpp245 auto fs2 = Sk2f(0.4f, -0.4f).floor(); in DEF_TEST() local
246 REPORTER_ASSERT(r, fs2[0] == 0.0f); in DEF_TEST()
247 REPORTER_ASSERT(r, fs2[1] == -1.0f); in DEF_TEST()
/third_party/skia/tests/
DSkNxTest.cpp251 auto fs2 = Sk2f(0.4f, -0.4f).floor(); in DEF_TEST() local
252 REPORTER_ASSERT(r, fs2[0] == 0.0f); in DEF_TEST()
253 REPORTER_ASSERT(r, fs2[1] == -1.0f); in DEF_TEST()
/third_party/boost/libs/static_string/test/
Dstatic_string.cpp3755 static_string<4> fs2 = cs2; in testFind() local
3763 BOOST_TEST(fs1.find(fs2) == 1); in testFind()
4086 BOOST_TEST(fs1.rfind(fs2) == 1); in testFind()
4407 BOOST_TEST(fs1.find_first_of(fs2) == 1); in testFind()
4729 BOOST_TEST(fs1.find_last_of(fs2) == 4); in testFind()
5785 static_string<20> fs2 = "0123456789"; in testReplace() local
5786 BOOST_TEST(fs2.replace(5, 2, fs2.data(), 2) == "0123401789"); in testReplace()
5789 static_string<20> fs2 = "0123456789"; in testReplace() local
5790 BOOST_TEST(fs2.replace(1, 3, fs2.data() + 1, 5) == "012345456789"); in testReplace()
5793 static_string<20> fs2 = "0123456789"; in testReplace() local
[all …]
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_exif.cpp4243 real64 fs2 = fLensInfo [3].As_real64 (); in PostParse() local
4245 if (fs1 >= 1.0 && fs2 >= 1.0 && fs2 >= fs1) in PostParse()
4249 real64 av2 = FNumberToApertureValue (fs2); in PostParse()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVRegisterInfo.td186 def F18_F : RISCVReg32<18,"f18", ["fs2"]>, DwarfRegNum<[50]>;
/third_party/gstreamer/gstplugins_base/gst/playback/
Dgstplaybin3.c3339 GstPluginFeature *fd1, *fd2, *fs1, *fs2;
3351 fs2 = (GstPluginFeature *) v2->sink;
3355 gst_plugin_feature_get_rank (fd2) * gst_plugin_feature_get_rank (fs2);
3359 fs1 = fs2 = NULL;
3374 if (fs1 && fs2) {
3376 diff = strcmp (GST_OBJECT_NAME (fs1), GST_OBJECT_NAME (fs2));
Dgstplaybin2.c4105 GstPluginFeature *fd1, *fd2, *fs1, *fs2; in avelement_compare() local
4117 fs2 = (GstPluginFeature *) v2->sink; in avelement_compare()
4121 gst_plugin_feature_get_rank (fd2) * gst_plugin_feature_get_rank (fs2); in avelement_compare()
4125 fs1 = fs2 = NULL; in avelement_compare()
4140 if (fs1 && fs2) { in avelement_compare()
4142 diff = strcmp (GST_OBJECT_NAME (fs1), GST_OBJECT_NAME (fs2)); in avelement_compare()