/third_party/ffmpeg/libavfilter/ |
D | af_acrusher.c | 59 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/ |
D | nullishCoalescingOperator4.symbols | 5 const aa1 = a1 ?? a1.toLowerCase() 6 >aa1 : Symbol(aa1, Decl(nullishCoalescingOperator4.ts, 1, 5))
|
D | nullishCoalescingOperator3.symbols | 21 const aa1 = a1 ?? a2 ?? a3 ?? a4 ?? a5 ?? a6 ?? 'whatever' 22 >aa1 : Symbol(aa1, Decl(nullishCoalescingOperator3.ts, 8, 5))
|
D | nullishCoalescingOperator4.js | 3 const aa1 = a1 ?? a1.toLowerCase() constant 9 var aa1 = a1 !== null && a1 !== void 0 ? a1 : a1.toLowerCase(); variable
|
D | nullishCoalescingOperator3.js | 10 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
|
D | nullishCoalescingOperator4.types | 6 const aa1 = a1 ?? a1.toLowerCase() 7 >aa1 : any
|
D | nullishCoalescingOperator_not_strict.js | 13 const aa1 = a1 ?? 'whatever' constant 24 var aa1 = a1 !== null && a1 !== void 0 ? a1 : 'whatever'; variable
|
D | nullishCoalescingOperator2.js | 13 const aa1 = a1 ?? 'whatever' constant 25 var aa1 = a1 !== null && a1 !== void 0 ? a1 : 'whatever'; variable
|
D | nullishCoalescingOperator2.symbols | 30 const aa1 = a1 ?? 'whatever' 31 >aa1 : Symbol(aa1, Decl(nullishCoalescingOperator2.ts, 11, 5))
|
D | nullishCoalescingOperator_not_strict.symbols | 30 const aa1 = a1 ?? 'whatever' 31 >aa1 : Symbol(aa1, Decl(nullishCoalescingOperator_not_strict.ts, 11, 5))
|
D | nullishCoalescingOperator3.types | 29 const aa1 = a1 ?? a2 ?? a3 ?? a4 ?? a5 ?? a6 ?? 'whatever' 30 >aa1 : boolean | "" | 0 | "literal" | 1 | "whatever"
|
D | nullishCoalescingOperator1.js | 23 const aa1 = a1 ?? 'whatever'; constant 70 var aa1 = a1 !== null && a1 !== void 0 ? a1 : 'whatever'; variable
|
D | nullishCoalescingOperator_es2020.js | 13 const aa1 = a1 ?? 'whatever' constant 43 const aa1 = a1 ?? 'whatever'; constant
|
D | nullishCoalescingOperator_not_strict.types | 41 const aa1 = a1 ?? 'whatever' 42 >aa1 : "literal" | "whatever"
|
D | nullishCoalescingOperator2.types | 41 const aa1 = a1 ?? 'whatever' 42 >aa1 : "literal" | "whatever"
|
D | nullishCoalescingOperator1.symbols | 58 const aa1 = a1 ?? 'whatever'; 59 >aa1 : Symbol(aa1, Decl(nullishCoalescingOperator1.ts, 21, 5))
|
D | nullishCoalescingOperator_es2020.symbols | 30 const aa1 = a1 ?? 'whatever' 31 >aa1 : Symbol(aa1, Decl(nullishCoalescingOperator_es2020.ts, 11, 5))
|
D | nullishCoalescingOperator4.errors.txt | 7 const aa1 = a1 ?? a1.toLowerCase()
|
/third_party/skia/src/gpu/ops/ |
D | GrMeshDrawOp.h | 29 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/ |
D | GrSimpleMeshDrawOpHelper.cpp | 40 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/ |
D | nullishCoalescingOperator4.ts | 4 const aa1 = a1 ?? a1.toLowerCase() constant
|
D | nullishCoalescingOperator3.ts | 11 const aa1 = a1 ?? a2 ?? a3 ?? a4 ?? a5 ?? a6 ?? 'whatever' constant
|
D | nullishCoalescingOperator_not_strict.ts | 14 const aa1 = a1 ?? 'whatever' constant
|
D | nullishCoalescingOperator2.ts | 14 const aa1 = a1 ?? 'whatever' constant
|
D | nullishCoalescingOperator1.ts | 25 const aa1 = a1 ?? 'whatever'; constant
|