Home
last modified time | relevance | path

Searched refs:aa1 (Results 1 – 25 of 37) sorted by relevance

12

/third_party/ffmpeg/libavfilter/
Daf_acrusher.c59 double aa1; member
118 static inline double factor(double y, double k, double aa1, double aa) in factor() argument
120 return 0.5 * (sin(M_PI * (fabs(y - k) - aa1) / aa - M_PI_2) + 1); in factor()
128 const double aa1 = s->aa1; in bitreduction() local
157 if (k - aa1 <= y && y <= k + aa1) { in bitreduction()
159 } else if (y > k + aa1) { in bitreduction()
161 factor(y, k, aa1, aa); in bitreduction()
164 factor(y, k, aa1, aa); in bitreduction()
173 } else if (k - aa1 <= y && y <= k + aa1) { in bitreduction()
175 } else if (y > k + aa1) { in bitreduction()
[all …]
/third_party/typescript/tests/baselines/reference/
DnullishCoalescingOperator4.symbols5 const aa1 = a1 ?? a1.toLowerCase()
6 >aa1 : Symbol(aa1, Decl(nullishCoalescingOperator4.ts, 1, 5))
DnullishCoalescingOperator3.symbols21 const aa1 = a1 ?? a2 ?? a3 ?? a4 ?? a5 ?? a6 ?? 'whatever'
22 >aa1 : Symbol(aa1, Decl(nullishCoalescingOperator3.ts, 8, 5))
DnullishCoalescingOperator4.js3 const aa1 = a1 ?? a1.toLowerCase() constant
9 var aa1 = a1 !== null && a1 !== void 0 ? a1 : a1.toLowerCase(); variable
DnullishCoalescingOperator3.js10 const aa1 = a1 ?? a2 ?? a3 ?? a4 ?? a5 ?? a6 ?? 'whatever' constant
16 var aa1 = (_e = (_d = (_c = (_b = (_a = a1 !== null && a1 !== void 0 ? a1 : a2) !== null && _a !== … variable
DnullishCoalescingOperator4.types6 const aa1 = a1 ?? a1.toLowerCase()
7 >aa1 : any
DnullishCoalescingOperator_not_strict.js13 const aa1 = a1 ?? 'whatever' constant
24 var aa1 = a1 !== null && a1 !== void 0 ? a1 : 'whatever'; variable
DnullishCoalescingOperator2.js13 const aa1 = a1 ?? 'whatever' constant
25 var aa1 = a1 !== null && a1 !== void 0 ? a1 : 'whatever'; variable
DnullishCoalescingOperator2.symbols30 const aa1 = a1 ?? 'whatever'
31 >aa1 : Symbol(aa1, Decl(nullishCoalescingOperator2.ts, 11, 5))
DnullishCoalescingOperator_not_strict.symbols30 const aa1 = a1 ?? 'whatever'
31 >aa1 : Symbol(aa1, Decl(nullishCoalescingOperator_not_strict.ts, 11, 5))
DnullishCoalescingOperator3.types29 const aa1 = a1 ?? a2 ?? a3 ?? a4 ?? a5 ?? a6 ?? 'whatever'
30 >aa1 : boolean | "" | 0 | "literal" | 1 | "whatever"
DnullishCoalescingOperator1.js23 const aa1 = a1 ?? 'whatever'; constant
70 var aa1 = a1 !== null && a1 !== void 0 ? a1 : 'whatever'; variable
DnullishCoalescingOperator_es2020.js13 const aa1 = a1 ?? 'whatever' constant
43 const aa1 = a1 ?? 'whatever'; constant
DnullishCoalescingOperator_not_strict.types41 const aa1 = a1 ?? 'whatever'
42 >aa1 : "literal" | "whatever"
DnullishCoalescingOperator2.types41 const aa1 = a1 ?? 'whatever'
42 >aa1 : "literal" | "whatever"
DnullishCoalescingOperator1.symbols58 const aa1 = a1 ?? 'whatever';
59 >aa1 : Symbol(aa1, Decl(nullishCoalescingOperator1.ts, 21, 5))
DnullishCoalescingOperator_es2020.symbols30 const aa1 = a1 ?? 'whatever'
31 >aa1 : Symbol(aa1, Decl(nullishCoalescingOperator_es2020.ts, 11, 5))
DnullishCoalescingOperator4.errors.txt7 const aa1 = a1 ?? a1.toLowerCase()
/third_party/skia/src/gpu/ops/
DGrMeshDrawOp.h29 static bool CanUpgradeAAOnMerge(GrAAType aa1, GrAAType aa2) { in CanUpgradeAAOnMerge() argument
30 return (aa1 == GrAAType::kNone && aa2 == GrAAType::kCoverage) || in CanUpgradeAAOnMerge()
31 (aa1 == GrAAType::kCoverage && aa2 == GrAAType::kNone); in CanUpgradeAAOnMerge()
/third_party/flutter/skia/src/gpu/ops/
DGrSimpleMeshDrawOpHelper.cpp40 static bool none_as_coverage_aa_compatible(GrAAType aa1, GrAAType aa2) { in none_as_coverage_aa_compatible() argument
41 return (aa1 == GrAAType::kNone && aa2 == GrAAType::kCoverage) || in none_as_coverage_aa_compatible()
42 (aa1 == GrAAType::kCoverage && aa2 == GrAAType::kNone); in none_as_coverage_aa_compatible()
/third_party/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/
DnullishCoalescingOperator4.ts4 const aa1 = a1 ?? a1.toLowerCase() constant
DnullishCoalescingOperator3.ts11 const aa1 = a1 ?? a2 ?? a3 ?? a4 ?? a5 ?? a6 ?? 'whatever' constant
DnullishCoalescingOperator_not_strict.ts14 const aa1 = a1 ?? 'whatever' constant
DnullishCoalescingOperator2.ts14 const aa1 = a1 ?? 'whatever' constant
DnullishCoalescingOperator1.ts25 const aa1 = a1 ?? 'whatever'; constant

12