Home
last modified time | relevance | path

Searched refs:f11 (Results 1 – 25 of 366) sorted by relevance

12345678910>>...15

/third_party/typescript/tests/baselines/reference/
DnullishCoalescingOperator11.types2 declare const f11: 1 | 0 | '' | null | undefined;
3 >f11 : "" | 0 | 1 | null | undefined
6 let g11 = f11 ?? f11.toFixed()
8 >f11 ?? f11.toFixed() : any
9 >f11 : "" | 0 | 1 | null | undefined
10 >f11.toFixed() : any
11 >f11.toFixed : any
12 >f11 : null | undefined
DgenericDefaultsErrors.types17 declare function f11<T, U, V = number>(): void;
18 >f11 : <T, U, V = number>() => void
20 f11(); // ok
21 >f11() : void
22 >f11 : <T, U, V = number>() => void
24 f11<1>(); // error
25 >f11<1>() : void
26 >f11 : <T, U, V = number>() => void
28 f11<1, 2>(); // ok
29 >f11<1, 2>() : void
[all …]
DnullishCoalescingOperator11.symbols2 declare const f11: 1 | 0 | '' | null | undefined;
3 >f11 : Symbol(f11, Decl(nullishCoalescingOperator11.ts, 0, 13))
5 let g11 = f11 ?? f11.toFixed()
7 >f11 : Symbol(f11, Decl(nullishCoalescingOperator11.ts, 0, 13))
8 >f11 : Symbol(f11, Decl(nullishCoalescingOperator11.ts, 0, 13))
DgenericDefaultsErrors.js9 declare function f11<T, U, V = number>(): void;
10 f11(); // ok
11 f11<1>(); // error
12 f11<1, 2>(); // ok
13 f11<1, 2, 3>(); // ok
14 f11<1, 2, 3, 4>(); // error
46 f11(); // ok
47 f11(); // error
48 f11(); // ok
49 f11(); // ok
[all …]
DnullishCoalescingOperator11.js2 declare const f11: 1 | 0 | '' | null | undefined;
4 let g11 = f11 ?? f11.toFixed()
11 var g11 = f11 !== null && f11 !== void 0 ? f11 : f11.toFixed();
DgenericRestParameters2.js14 declare let f11: (a: number, ...x: [string, ...boolean[]]) => void;
31 f11(42, "hello");
32 f11(42, "hello", true);
33 f11(42, "hello", true, false);
34 f11(t1[0], t1[1], t1[2], t1[3]);
35 f11(...t1);
36 f11(42, ...t2);
37 f11(42, "hello", ...t3);
38 f11(42, "hello", true, ...t4);
39 f11(42, "hello", true, ...t4, false, ...t3);
[all …]
DgenericDefaultsErrors.symbols27 declare function f11<T, U, V = number>(): void;
28 >f11 : Symbol(f11, Decl(genericDefaultsErrors.ts, 5, 54))
33 f11(); // ok
34 >f11 : Symbol(f11, Decl(genericDefaultsErrors.ts, 5, 54))
36 f11<1>(); // error
37 >f11 : Symbol(f11, Decl(genericDefaultsErrors.ts, 5, 54))
39 f11<1, 2>(); // ok
40 >f11 : Symbol(f11, Decl(genericDefaultsErrors.ts, 5, 54))
42 f11<1, 2, 3>(); // ok
43 >f11 : Symbol(f11, Decl(genericDefaultsErrors.ts, 5, 54))
[all …]
DgenericRestParameters1.js53 declare function f11<T extends (string | number | boolean)[]>(...args: T): T;
55 const z10 = f11(42, "hello", true); // [42, "hello", true]
56 const z11 = f11(42, "hello"); // [42, "hello"]
57 const z12 = f11(42); // [42]
58 const z13 = f11(); // []
59 const z14 = f11(...t3); // [number, string, boolean]
60 const z15 = f11(42, ...t2); // [42, string, boolean]
61 const z16 = f11(42, "hello", ...t1); // [42, "hello", boolean]
62 const z17 = f11(42, "hello", true, ...t0); // [42, "hello", true]
63 const z18 = f11(...ns, true); // (string | number | true)[]
[all …]
DgenericRestParameters2.symbols46 declare let f11: (a: number, ...x: [string, ...boolean[]]) => void;
47 >f11 : Symbol(f11, Decl(genericRestParameters2.ts, 12, 11))
108 f11(42, "hello");
109 >f11 : Symbol(f11, Decl(genericRestParameters2.ts, 12, 11))
111 f11(42, "hello", true);
112 >f11 : Symbol(f11, Decl(genericRestParameters2.ts, 12, 11))
114 f11(42, "hello", true, false);
115 >f11 : Symbol(f11, Decl(genericRestParameters2.ts, 12, 11))
117 f11(t1[0], t1[1], t1[2], t1[3]);
118 >f11 : Symbol(f11, Decl(genericRestParameters2.ts, 12, 11))
[all …]
DgenericRestParameters2.types46 declare let f11: (a: number, ...x: [string, ...boolean[]]) => void;
47 >f11 : (a: number, x_0: string, ...x_1: boolean[]) => void
148 f11(42, "hello");
149 >f11(42, "hello") : void
150 >f11 : (a: number, x_0: string, ...x_1: boolean[]) => void
154 f11(42, "hello", true);
155 >f11(42, "hello", true) : void
156 >f11 : (a: number, x_0: string, ...x_1: boolean[]) => void
161 f11(42, "hello", true, false);
162 >f11(42, "hello", true, false) : void
[all …]
DgenericRestParameters1.symbols195 declare function f11<T extends (string | number | boolean)[]>(...args: T): T;
196 >f11 : Symbol(f11, Decl(genericRestParameters1.ts, 49, 1))
202 const z10 = f11(42, "hello", true); // [42, "hello", true]
204 >f11 : Symbol(f11, Decl(genericRestParameters1.ts, 49, 1))
206 const z11 = f11(42, "hello"); // [42, "hello"]
208 >f11 : Symbol(f11, Decl(genericRestParameters1.ts, 49, 1))
210 const z12 = f11(42); // [42]
212 >f11 : Symbol(f11, Decl(genericRestParameters1.ts, 49, 1))
214 const z13 = f11(); // []
216 >f11 : Symbol(f11, Decl(genericRestParameters1.ts, 49, 1))
[all …]
DgenericRestParameters1.types285 declare function f11<T extends (string | number | boolean)[]>(...args: T): T;
286 >f11 : <T extends (string | number | boolean)[]>(...args: T) => T
289 const z10 = f11(42, "hello", true); // [42, "hello", true]
291 >f11(42, "hello", true) : [42, "hello", true]
292 >f11 : <T extends (string | number | boolean)[]>(...args: T) => T
297 const z11 = f11(42, "hello"); // [42, "hello"]
299 >f11(42, "hello") : [42, "hello"]
300 >f11 : <T extends (string | number | boolean)[]>(...args: T) => T
304 const z12 = f11(42); // [42]
306 >f11(42) : [42]
[all …]
DgenericRestParameters1.errors.txt60 declare function f11<T extends (string | number | boolean)[]>(...args: T): T;
62 const z10 = f11(42, "hello", true); // [42, "hello", true]
63 const z11 = f11(42, "hello"); // [42, "hello"]
64 const z12 = f11(42); // [42]
65 const z13 = f11(); // []
66 const z14 = f11(...t3); // [number, string, boolean]
67 const z15 = f11(42, ...t2); // [42, string, boolean]
68 const z16 = f11(42, "hello", ...t1); // [42, "hello", boolean]
69 const z17 = f11(42, "hello", true, ...t0); // [42, "hello", true]
70 const z18 = f11(...ns, true); // (string | number | true)[]
[all …]
DnullishCoalescingOperator11.errors.txt5 declare const f11: 1 | 0 | '' | null | undefined;
7 let g11 = f11 ?? f11.toFixed()
/third_party/typescript/tests/cases/conformance/types/rest/
DgenericRestParameters2.ts16 declare let f11: (a: number, ...x: [string, ...boolean[]]) => void; variable
33 f11(42, "hello");
34 f11(42, "hello", true);
35 f11(42, "hello", true, false);
36 f11(t1[0], t1[1], t1[2], t1[3]);
37 f11(...t1);
38 f11(42, ...t2);
39 f11(42, "hello", ...t3);
40 f11(42, "hello", true, ...t4);
41 f11(42, "hello", true, ...t4, false, ...t3);
DgenericRestParameters1.ts55 declare function f11<T extends (string | number | boolean)[]>(...args: T): T; function
57 const z10 = f11(42, "hello", true); // [42, "hello", true]
58 const z11 = f11(42, "hello"); // [42, "hello"]
59 const z12 = f11(42); // [42]
60 const z13 = f11(); // []
61 const z14 = f11(...t3); // [number, string, boolean]
62 const z15 = f11(42, ...t2); // [42, string, boolean]
63 const z16 = f11(42, "hello", ...t1); // [42, "hello", boolean]
64 const z17 = f11(42, "hello", true, ...t0); // [42, "hello", true]
65 const z18 = f11(...ns, true); // (string | number | true)[]
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcMisc.cpp112 GLuint f11; in floatToUnisgnedF11() local
125 f11 = (GLuint)(FLOAT11_MAX_BIASED_EXP) | (GLuint)(0x0000003F); in floatToUnisgnedF11()
130 f11 = 0x00000000; in floatToUnisgnedF11()
133 return f11; in floatToUnisgnedF11()
150 f11 = (GLuint)(FLOAT11_MAX_BIASED_EXP) | (GLuint)(mantissa >> 17); in floatToUnisgnedF11()
166 f11 = mantissa; in floatToUnisgnedF11()
170 f11 = ((exp - FLOAT11_MIN_BIASED_EXP_AS_SINGLE_FP_EXP) >> 17) | (mantissa >> 17); in floatToUnisgnedF11()
173 return f11; in floatToUnisgnedF11()
308 float unsignedF11ToFloat(GLuint f11) in unsignedF11ToFloat() argument
310 unsigned int mantissa = (unsigned int)(f11 & ((1 << 6) - 1)); in unsignedF11ToFloat()
[all …]
/third_party/typescript/tests/cases/compiler/
DgenericDefaultsErrors.ts10 declare function f11<T, U, V = number>(): void;
11 f11(); // ok
12 f11<1>(); // error
13 f11<1, 2>(); // ok
14 f11<1, 2, 3>(); // ok
15 f11<1, 2, 3, 4>(); // error
/third_party/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/
DnullishCoalescingOperator11.ts3 declare const f11: 1 | 0 | '' | null | undefined; constant
5 let g11 = f11 ?? f11.toFixed() variable
/third_party/boost/boost/math/special_functions/detail/
Dhypergeometric_1F1_negative_b_regions.hpp463 double f11 = domain[index - stride - 1][2]; in hypergeometric_1F1_negative_b_recurrence_region() local
489 …T lower_limit = static_cast<T>(1 / ((x2 - x1) * (y2 - y1)) * (f11 * (x2 - effective_x) * (y2 - eff… in hypergeometric_1F1_negative_b_recurrence_region()
494 double min_f = (std::min)((std::min)(f11, f12), (std::min)(f21, f22)); in hypergeometric_1F1_negative_b_recurrence_region()
503 BOOST_ASSERT(f11 <= domain[index - stride - 1][3]); in hypergeometric_1F1_negative_b_recurrence_region()
504 f11 = domain[index - stride - 1][3]; in hypergeometric_1F1_negative_b_recurrence_region()
512 …T upper_limit = static_cast<T>(1 / ((x2 - x1) * (y2 - y1)) * (f11 * (x2 - a) * (y2 - b) + f21 * (a… in hypergeometric_1F1_negative_b_recurrence_region()
/third_party/glslang/Test/baseResults/
Dhlsl.PointSize.geom.out8 0:8 Function Definition: @main(u1[3];struct-S-f11; ( temp void)
28 0:8 Function Call: @main(u1[3];struct-S-f11; ( temp void)
45 0:8 Function Definition: @main(u1[3];struct-S-f11; ( temp void)
65 0:8 Function Call: @main(u1[3];struct-S-f11; ( temp void)
90 Name 16 "@main(u1[3];struct-S-f11;"
129 34: 2 FunctionCall 16(@main(u1[3];struct-S-f11;) 31(param) 33(param)
134 16(@main(u1[3];struct-S-f11;): 2 Function None 13
/third_party/libffi/testsuite/libffi.call/
Dmany_double.c24 double f11, in many() argument
32 (double) f11, (double) f12, (double) f13); in many()
35 return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13); in many()
Dmany.c14 …oat f4, float f5, float f6, float f7, float f8, float f9, float f10, float f11, float f12, float f… in many() argument
20 (double) f11, (double) f12, (double) f13); in many()
23 return f1+f2+f3+f4+f5+f6+f7+f8+f9+f10+f11+f12+f13; in many()
/third_party/cmsis/CMSIS/DSP/Source/InterpolationFunctions/
Darm_bilinear_interp_f16.c110 float16_t f00, f01, f10, f11; in arm_bilinear_interp_f16() local
140 f11 = pData[index + 1]; in arm_bilinear_interp_f16()
146 b4 = f00 - f01 - f10 + f11; in arm_bilinear_interp_f16()
Darm_bilinear_interp_f32.c107 float32_t f00, f01, f10, f11; in arm_bilinear_interp_f32() local
137 f11 = pData[index + 1]; in arm_bilinear_interp_f32()
143 b4 = f00 - f01 - f10 + f11; in arm_bilinear_interp_f32()

12345678910>>...15