Home
last modified time | relevance | path

Searched refs:f21 (Results 1 – 25 of 197) sorted by relevance

12345678

/third_party/boost/boost/math/special_functions/detail/
Dhypergeometric_1F1_negative_b_regions.hpp469 double f21 = domain[index - 1][2]; in hypergeometric_1F1_negative_b_recurrence_region() local
489 …((x2 - x1) * (y2 - y1)) * (f11 * (x2 - effective_x) * (y2 - effective_y) + f21 * (effective_x - x1… 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()
507 BOOST_ASSERT(f21 <= domain[index - 1][3]); in hypergeometric_1F1_negative_b_recurrence_region()
508 f21 = domain[index - 1][3]; in hypergeometric_1F1_negative_b_recurrence_region()
512 … static_cast<T>(1 / ((x2 - x1) * (y2 - y1)) * (f11 * (x2 - a) * (y2 - b) + f21 * (a - x1) * (y2 - … in hypergeometric_1F1_negative_b_recurrence_region()
/third_party/typescript/tests/baselines/reference/
DdestructuringObjectBindingPatternAndAssignment3.js6 var { f2: {f21} = { f212: "string" } }: any = undefined;
16 var _a = undefined.f2, _b = _a === void 0 ? { f212: "string" } : _a, f21 = _b.f21; variable
DdestructuringObjectBindingPatternAndAssignment3.types21 var { f2: {f21} = { f212: "string" } }: any = undefined;
23 >f21 : any
24 >{ f212: "string" } : { f212: string; f21: any; }
DdestructuringObjectBindingPatternAndAssignment3.symbols15 var { f2: {f21} = { f212: "string" } }: any = undefined;
16 >f21 : Symbol(f21, Decl(destructuringObjectBindingPatternAndAssignment3.ts, 4, 11))
DrestParameters.symbols19 function f21(a:string, b?:string, c?:number, ...d:number[]){}
20 >f21 : Symbol(f21, Decl(restParameters.ts, 4, 50))
DrestParameters.js8 function f21(a:string, b?:string, c?:number, ...d:number[]){} function
29 function f21(a, b, c) {
DrestParameters.types19 function f21(a:string, b?:string, c?:number, ...d:number[]){}
20 >f21 : (a: string, b?: string, c?: number, ...d: number[]) => void
DdestructuringObjectBindingPatternAndAssignment3.errors.txt7 …bject literal may only specify known properties, and 'f212' does not exist in type '{ f21: any; }'.
27 var { f2: {f21} = { f212: "string" } }: any = undefined;
31 …bject literal may only specify known properties, and 'f212' does not exist in type '{ f21: any; }'.
DfunctionsMissingReturnStatementsAndExpressions.js100 function f21(): number | string {
209 function f21() { function
DgenericRestParameters1.js99 const f21 = bind(f20, 42); // (y: string, z: boolean) => string[] constant
100 const f22 = bind(f21, "hello"); // (z: boolean) => string[]
104 f21("hello", true);
250 var f21 = bind(f20, 42); // (y: string, z: boolean) => string[] variable
251 var f22 = bind(f21, "hello"); // (z: boolean) => string[]
254 f21("hello", true);
324 declare const f21: (y: string, z: boolean) => string[];
DvarianceMeasurement.js22 const f21: Foo2<'a'> = f20; constant
85 var f21 = f20; variable
DbooleanLiteralTypes1.js90 function f21(x: Item) { function
165 function f21(x) {
DbooleanLiteralTypes2.js90 function f21(x: Item) { function
165 function f21(x) {
DrecursiveConditionalTypes.js116 function f21<T extends number>(x: Grow1<[], T>, y: Grow2<[], T>) {
117 f21(y, x); // Error
168 function f21(x, y) { function
169 f21(y, x); // Error
236 declare function f21<T extends number>(x: Grow1<[], T>, y: Grow2<[], T>): void;
DfunctionsMissingReturnStatementsAndExpressions.symbols149 function f21(): number | string {
150 >f21 : Symbol(f21, Decl(functionsMissingReturnStatementsAndExpressions.ts, 96, 1))
Dparser.asyncGenerators.functionDeclarations.es2018.symbols136 async function * f21() {
137 >f21 : Symbol(f21, Decl(yieldInNestedComputedPropertyIsOk.ts, 0, 0))
/third_party/boost/libs/thread/test/sync/futures/shared_future/
Dthen_executor_pass.cpp114 boost::shared_future<int> f21 = f1.then(ex, &p2).share(); in main() local
115 boost::future<int> f2= f21.then(ex, &p2); in main()
122 boost::shared_future<int> f21 = f1.then(ex, &p2).share(); in main() local
123 boost::future<int> f2= f21.then(&p2); in main()
/third_party/boost/libs/thread/test/sync/futures/future/
Dthen_executor_pass.cpp117 boost::future<int> f21 = f1.then(ex, &p2); in main() local
118 boost::future<int> f2= f21.then(ex, &p2); in main()
125 boost::future<int> f21 = f1.then(ex, &p2); in main() local
126 boost::future<int> f2= f21.then(&p2); in main()
Dthen_pass.cpp108 boost::future<int> f21 = f1.then(&p2); in main() local
109 boost::future<int> f2= f21.then(&p2); in main()
Dthen_deferred_pass.cpp112 boost::future<int> f21 = f1.then(boost::launch::deferred, &p2); in main() local
113 boost::future<int> f2= f21.then(boost::launch::deferred, &p2); in main()
Dasync_deferred_then_pass.cpp128 boost::future<int> f21 = f1.then(&p2); in main() local
129 boost::future<int> f2= f21.then(&p2); in main()
/third_party/typescript/tests/cases/conformance/types/rest/
DgenericRestParameters1.ts101 const f21 = bind(f20, 42); // (y: string, z: boolean) => string[] constant
102 const f22 = bind(f21, "hello"); // (z: boolean) => string[]
106 f21("hello", true);
/third_party/skia/resources/sksl/runtime/
DLargeProgram_StackDepth.rts37 void f21() { f22(); }
38 void f20() { f21(); }
/third_party/skia/resources/sksl/runtime_errors/
DProgramTooLarge_StackDepth.rts40 void f21() { f22(); }
41 void f20() { f21(); }
/third_party/eudev/hwdb/
D60-keyboard.hwdb131 KEYBOARD_KEY_82=f21 # Touchpad toggle
195 KEYBOARD_KEY_81=f21 # Touchpad toggle
216 KEYBOARD_KEY_6b=f21 # Touchpad Toggle
296 KEYBOARD_KEY_98=f21 # FIXME: Tablet screen rotation
300 KEYBOARD_KEY_9e=f21 # Touchpad toggle
305 KEYBOARD_KEY_d9=f21 # Touchpad toggle
340 KEYBOARD_KEY_9e=!f21
372 KEYBOARD_KEY_65=f21 # Fn+F5 Touchpad toggle
411 KEYBOARD_KEY_f4=f21 # FIXME: silent-mode decrease CPU/GPU clock
534 KEYBOARD_KEY_d8=f21
[all …]

12345678