Home
last modified time | relevance | path

Searched refs:F3 (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/third_party/typescript/tests/baselines/reference/
DunionTypeCallSignatures6.types44 interface F3 {
67 >x1 : A & C & { f0: F0 | F3; f1: F1 | F3; f2: F1 | F4; f3: F3 | F4; f4: F3 | F5; }
69 f0: F0 | F3;
70 >f0 : F0 | F3
72 f1: F1 | F3;
73 >f1 : F1 | F3
78 f3: F3 | F4;
79 >f3 : F3 | F4
81 f4: F3 | F5;
82 >f4 : F3 | F5
[all …]
DunionTypeCallSignatures4.types13 type F3 = (a: string, ...rest: string[]) => void;
14 >F3 : (a: string, ...rest: string[]) => void
50 var f34: F3 | F4;
51 >f34 : F3 | F4
55 >f34 : F3 | F4
60 >f34 : F3 | F4
66 >f34 : F3 | F4
71 var f1234: F1 | F2 | F3 | F4;
72 >f1234 : F1 | F2 | F3 | F4
76 >f1234 : F1 | F2 | F3 | F4
[all …]
DunionTypeCallSignatures6.errors.txt5 …Each member of the union type 'F3 | F4' has signatures, but none of those signatures are compatibl…
6 …684: The 'this' context of type 'A & C & { f0: F0 | F3; f1: F1 | F3; f2: F1 | F4; f3: F3 | F4; f4:…
7 …Property 'b' is missing in type 'A & C & { f0: F0 | F3; f1: F1 | F3; f2: F1 | F4; f3: F3 | F4; f4:…
37 interface F3 {
51 f0: F0 | F3;
52 f1: F1 | F3;
54 f3: F3 | F4;
55 f4: F3 | F5;
63 !!! error TS2349: Each member of the union type 'F3 | F4' has signatures, but none of those signa…
66 …684: The 'this' context of type 'A & C & { f0: F0 | F3; f1: F1 | F3; f2: F1 | F4; f3: F3 | F4; f4:…
[all …]
DinferringClassStaticMembersFromAssignments.types55 function F3() { }
56 >F3 : typeof F3
58 F3.staticProp = 0;
59 >F3.staticProp = 0 : 0
60 >F3.staticProp : number
61 >F3 : typeof F3
139 var n = F3.staticProp;
141 >F3.staticProp : number
142 >F3 : typeof F3
DunionTypeCallSignatures4.symbols13 type F3 = (a: string, ...rest: string[]) => void;
14 >F3 : Symbol(F3, Decl(unionTypeCallSignatures4.ts, 1, 54))
43 var f34: F3 | F4;
45 >F3 : Symbol(F3, Decl(unionTypeCallSignatures4.ts, 1, 54))
57 var f1234: F1 | F2 | F3 | F4;
61 >F3 : Symbol(F3, Decl(unionTypeCallSignatures4.ts, 1, 54))
73 var f12345: F1 | F2 | F3 | F4 | F5;
77 >F3 : Symbol(F3, Decl(unionTypeCallSignatures4.ts, 1, 54))
DunionTypeCallSignatures6.symbols48 interface F3 {
49 >F3 : Symbol(F3, Decl(unionTypeCallSignatures6.ts, 12, 5))
87 f0: F0 | F3;
90 >F3 : Symbol(F3, Decl(unionTypeCallSignatures6.ts, 12, 5))
92 f1: F1 | F3;
95 >F3 : Symbol(F3, Decl(unionTypeCallSignatures6.ts, 12, 5))
102 f3: F3 | F4;
104 >F3 : Symbol(F3, Decl(unionTypeCallSignatures6.ts, 12, 5))
107 f4: F3 | F5;
109 >F3 : Symbol(F3, Decl(unionTypeCallSignatures6.ts, 12, 5))
[all …]
DunionTypeCallSignatures6.js16 interface F3 {
30 f0: F0 | F3;
31 f1: F1 | F3;
33 f3: F3 | F4;
34 f4: F3 | F5;
43 f4: F3 | F5;
DinferringClassStaticMembersFromAssignments.symbols43 function F3() { }
44 >F3 : Symbol(F3, Decl(global.js, 1, 18), Decl(global.js, 3, 17))
46 F3.staticProp = 0;
47 >F3.staticProp : Symbol(F3.staticProp, Decl(global.js, 3, 17))
48 >F3 : Symbol(F3, Decl(global.js, 1, 18), Decl(global.js, 3, 17))
49 >staticProp : Symbol(F3.staticProp, Decl(global.js, 3, 17))
119 var n = F3.staticProp;
121 >F3.staticProp : Symbol(F3.staticProp, Decl(global.js, 3, 17))
122 >F3 : Symbol(F3, Decl(global.js, 1, 18), Decl(global.js, 3, 17))
123 >staticProp : Symbol(F3.staticProp, Decl(global.js, 3, 17))
DoptionalParamArgsTest.js47 function F3(F3A1=0,F3A2=F3A1) {return F3A1 + F3A2; } class
71 var f3v1=F3(1,2);
83 var f3v2=F3(1);
89 var f3v3=F3();
113 F3(1,2,3);
181 function F3(F3A1, F3A2) {
209 var f3v1 = F3(1, 2);
219 var f3v2 = F3(1);
224 var f3v3 = F3();
246 F3(1, 2, 3);
DdeclFileGenericType.js8 export function F3<T>(x: T): C.A<C.B>[] { return null; }
26 export var d = C.F3;
79 function F3(x) { return null; } class
80 C.F3 = F3;
97 exports.d = C.F3;
122 function F3<T>(x: T): C.A<C.B>[];
134 export declare var d: typeof C.F3;
DunionTypeCallSignatures4.js4 type F3 = (a: string, ...rest: string[]) => void;
13 var f34: F3 | F4;
18 var f1234: F1 | F2 | F3 | F4;
23 var f12345: F1 | F2 | F3 | F4 | F5;
/third_party/skia/third_party/externals/tint/src/
Dtraits_test.cc25 void F3(int, S, float) {} in F3() function
30 F3(0, {}, 0); // Avoid unused method warning in TEST()
32 static_assert(std::is_same<ParameterType<decltype(&F3), 0>, int>::value, ""); in TEST()
33 static_assert(std::is_same<ParameterType<decltype(&F3), 1>, S>::value, ""); in TEST()
34 static_assert(std::is_same<ParameterType<decltype(&F3), 2>, float>::value, in TEST()
37 static_assert(std::is_same<ReturnType<decltype(&F3)>, void>::value, ""); in TEST()
39 static_assert(SignatureOfT<decltype(&F3)>::parameter_count == 3, ""); in TEST()
46 void F3(int, S, float) {} in TEST() function in tint::traits::TEST::C
49 C().F3(0, {}, 0); // Avoid unused method warning in TEST()
51 static_assert(std::is_same<ParameterType<decltype(&C::F3), 0>, int>::value, in TEST()
[all …]
/third_party/openh264/codec/build/windowsphone/all/
DCodecApp.sln6 …-00C04F79EFBC}") = "CodecApp", "CodecApp\CodecApp.csproj", "{5424CF29-908E-417E-93F3-F1CD81E5372C}"
24 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Any CPU.Build.0 = Debug|Any CPU
26 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
27 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|ARM.ActiveCfg = Debug|ARM
28 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|ARM.Build.0 = Debug|ARM
29 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|ARM.Deploy.0 = Debug|ARM
30 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
31 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Mixed Platforms.Build.0 = Debug|x86
32 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Mixed Platforms.Deploy.0 = Debug|x86
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Dmd4-internal.c186 #define F3(x, y, z) (x ^ y ^ z) macro
253 MD4STEP(F3, a, b, c, d, in[ 0] + 0x6ed9eba1, 3); in MD4Transform()
254 MD4STEP(F3, d, a, b, c, in[ 8] + 0x6ed9eba1, 9); in MD4Transform()
255 MD4STEP(F3, c, d, a, b, in[ 4] + 0x6ed9eba1, 11); in MD4Transform()
256 MD4STEP(F3, b, c, d, a, in[12] + 0x6ed9eba1, 15); in MD4Transform()
257 MD4STEP(F3, a, b, c, d, in[ 2] + 0x6ed9eba1, 3); in MD4Transform()
258 MD4STEP(F3, d, a, b, c, in[10] + 0x6ed9eba1, 9); in MD4Transform()
259 MD4STEP(F3, c, d, a, b, in[ 6] + 0x6ed9eba1, 11); in MD4Transform()
260 MD4STEP(F3, b, c, d, a, in[14] + 0x6ed9eba1, 15); in MD4Transform()
261 MD4STEP(F3, a, b, c, d, in[ 1] + 0x6ed9eba1, 3); in MD4Transform()
[all …]
Dmd5-internal.c196 #define F3(x, y, z) (x ^ y ^ z) macro
251 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); in MD5Transform()
252 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); in MD5Transform()
253 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); in MD5Transform()
254 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); in MD5Transform()
255 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); in MD5Transform()
256 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); in MD5Transform()
257 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); in MD5Transform()
258 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); in MD5Transform()
259 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); in MD5Transform()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Dmd4-internal.c186 #define F3(x, y, z) (x ^ y ^ z) macro
253 MD4STEP(F3, a, b, c, d, in[ 0] + 0x6ed9eba1, 3); in MD4Transform()
254 MD4STEP(F3, d, a, b, c, in[ 8] + 0x6ed9eba1, 9); in MD4Transform()
255 MD4STEP(F3, c, d, a, b, in[ 4] + 0x6ed9eba1, 11); in MD4Transform()
256 MD4STEP(F3, b, c, d, a, in[12] + 0x6ed9eba1, 15); in MD4Transform()
257 MD4STEP(F3, a, b, c, d, in[ 2] + 0x6ed9eba1, 3); in MD4Transform()
258 MD4STEP(F3, d, a, b, c, in[10] + 0x6ed9eba1, 9); in MD4Transform()
259 MD4STEP(F3, c, d, a, b, in[ 6] + 0x6ed9eba1, 11); in MD4Transform()
260 MD4STEP(F3, b, c, d, a, in[14] + 0x6ed9eba1, 15); in MD4Transform()
261 MD4STEP(F3, a, b, c, d, in[ 1] + 0x6ed9eba1, 3); in MD4Transform()
[all …]
Dmd5-internal.c196 #define F3(x, y, z) (x ^ y ^ z) macro
251 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); in MD5Transform()
252 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); in MD5Transform()
253 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); in MD5Transform()
254 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); in MD5Transform()
255 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); in MD5Transform()
256 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); in MD5Transform()
257 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); in MD5Transform()
258 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); in MD5Transform()
259 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); in MD5Transform()
[all …]
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
Dmd5.c51 #define F3(x, y, z) (x ^ y ^ z) macro
108 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); in MD5Transform()
109 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); in MD5Transform()
110 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); in MD5Transform()
111 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); in MD5Transform()
112 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); in MD5Transform()
113 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); in MD5Transform()
114 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); in MD5Transform()
115 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); in MD5Transform()
116 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); in MD5Transform()
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/md5/
Dmd5.c182 #define F3(x, y, z) (x ^ y ^ z) macro
237 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); in MD5Transform()
238 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); in MD5Transform()
239 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); in MD5Transform()
240 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); in MD5Transform()
241 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); in MD5Transform()
242 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); in MD5Transform()
243 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); in MD5Transform()
244 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); in MD5Transform()
245 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); in MD5Transform()
[all …]
/third_party/typescript/tests/cases/conformance/types/union/
DunionTypeCallSignatures6.ts15 interface F3 { interface
29 f0: F0 | F3;
30 f1: F1 | F3;
32 f3: F3 | F4;
33 f4: F3 | F5;
42 f4: F3 | F5;
DunionTypeCallSignatures4.ts3 type F3 = (a: string, ...rest: string[]) => void; alias
12 var f34: F3 | F4;
17 var f1234: F1 | F2 | F3 | F4;
22 var f12345: F1 | F2 | F3 | F4 | F5;
/third_party/gn/src/base/
Dmd5.cc56 #define F3(x, y, z) (x ^ y ^ z) macro
110 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); in MD5Transform()
111 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); in MD5Transform()
112 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); in MD5Transform()
113 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); in MD5Transform()
114 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); in MD5Transform()
115 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); in MD5Transform()
116 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); in MD5Transform()
117 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); in MD5Transform()
118 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); in MD5Transform()
[all …]
/third_party/openssl/crypto/cast/asm/
Dcast-586.pl40 @F3=("sub","add","xor");
97 &E_CAST( 2,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
100 &E_CAST( 5,$S,$R,$L,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
103 &E_CAST( 8,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
106 &E_CAST(11,$S,$R,$L,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
113 &E_CAST(14,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
117 &E_CAST(14,$S,$R,$L,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
121 &E_CAST(11,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
124 &E_CAST( 8,$S,$R,$L,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
127 &E_CAST( 5,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
[all …]
/third_party/node/deps/openssl/openssl/crypto/cast/asm/
Dcast-586.pl40 @F3=("sub","add","xor");
97 &E_CAST( 2,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
100 &E_CAST( 5,$S,$R,$L,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
103 &E_CAST( 8,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
106 &E_CAST(11,$S,$R,$L,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
113 &E_CAST(14,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
117 &E_CAST(14,$S,$R,$L,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
121 &E_CAST(11,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
124 &E_CAST( 8,$S,$R,$L,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
127 &E_CAST( 5,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
[all …]
/third_party/pcre2/pcre2/src/sljit/
DsljitNativeRISCV_common.c76 #define F3(f) ((sljit_ins)(f) << 12) macro
80 #define ADD (F7(0x0) | F3(0x0) | OPC(0x33))
81 #define ADDI (F3(0x0) | OPC(0x13))
82 #define AND (F7(0x0) | F3(0x7) | OPC(0x33))
83 #define ANDI (F3(0x7) | OPC(0x13))
85 #define BEQ (F3(0x0) | OPC(0x63))
86 #define BNE (F3(0x1) | OPC(0x63))
87 #define BLT (F3(0x4) | OPC(0x63))
88 #define BGE (F3(0x5) | OPC(0x63))
89 #define BLTU (F3(0x6) | OPC(0x63))
[all …]

12345678910>>...12