| /third_party/ffmpeg/libavcodec/ |
| D | h264dsp_template.c | 104 …_t *p_pix, ptrdiff_t xstride, ptrdiff_t ystride, int inner_iters, int alpha, int beta, int8_t *tc0) in FUNCC() 111 beta <<= BIT_DEPTH - 8; in FUNCC() 127 FFABS( p1 - p0 ) < beta && in FUNCC() 128 FFABS( q1 - q0 ) < beta ) { in FUNCC() 133 if( FFABS( p2 - p0 ) < beta ) { in FUNCC() 138 if( FFABS( q2 - q0 ) < beta ) { in FUNCC() 152 static void FUNCC(h264_v_loop_filter_luma)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta, int… in FUNCC() 154 FUNCC(h264_loop_filter_luma)(pix, stride, sizeof(pixel), 4, alpha, beta, tc0); in FUNCC() 156 static void FUNCC(h264_h_loop_filter_luma)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta, int… in FUNCC() 158 FUNCC(h264_loop_filter_luma)(pix, sizeof(pixel), stride, 4, alpha, beta, tc0); in FUNCC() [all …]
|
| D | h264dsp.h | 49 int alpha, int beta, int8_t *tc0); 51 int alpha, int beta, int8_t *tc0); 53 int alpha, int beta, int8_t *tc0); 56 int alpha, int beta); 58 int alpha, int beta); 60 ptrdiff_t stride, int alpha, int beta); 62 int alpha, int beta, int8_t *tc0); 64 int alpha, int beta, int8_t *tc0); 66 ptrdiff_t stride, int alpha, int beta, 69 ptrdiff_t stride, int alpha, int beta); [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | library-reference-8.trace.json | 8 …"======== Resolving type reference directive 'beta', containing file '/test/foo.ts', root director… 10 "File '/test/types/beta/package.json' does not exist.", 11 "File '/test/types/beta/index.d.ts' exist - use it as a name resolution result.", 12 "Resolving real path for '/test/types/beta/index.d.ts', result '/test/types/beta/index.d.ts'.", 13 …"======== Type reference directive 'beta' was successfully resolved to '/test/types/beta/index.d.t… 14 …"======== Resolving type reference directive 'beta', containing file '/test/types/alpha/index.d.ts… 16 "File '/test/types/beta/package.json' does not exist according to earlier cached lookups.", 17 "File '/test/types/beta/index.d.ts' exist - use it as a name resolution result.", 18 "Resolving real path for '/test/types/beta/index.d.ts', result '/test/types/beta/index.d.ts'.", 19 …"======== Type reference directive 'beta' was successfully resolved to '/test/types/beta/index.d.t… [all …]
|
| D | moduleOuterQualification.symbols | 5 interface Beta { } 6 >Beta : Symbol(Beta, Decl(moduleOuterQualification.ts, 0, 22)) 11 // .d.ts emit: should be 'extends outer.Beta' 12 export interface Beta extends outer.Beta { } 13 >Beta : Symbol(Beta, Decl(moduleOuterQualification.ts, 2, 16)) 14 >outer.Beta : Symbol(Beta, Decl(moduleOuterQualification.ts, 0, 22)) 16 >Beta : Symbol(Beta, Decl(moduleOuterQualification.ts, 0, 22))
|
| D | library-reference-8.symbols | 3 /// <reference types="beta" /> 4 var x: string = alpha.a + beta.b; 9 >beta.b : Symbol(b, Decl(index.d.ts, 1, 19)) 10 >beta : Symbol(beta, Decl(index.d.ts, 1, 11)) 17 /// <reference types="beta" /> 22 === /test/types/beta/index.d.ts === 24 declare var beta: { b: string }; 25 >beta : Symbol(beta, Decl(index.d.ts, 1, 11))
|
| D | library-reference-8.types | 3 /// <reference types="beta" /> 4 var x: string = alpha.a + beta.b; 6 >alpha.a + beta.b : string 10 >beta.b : string 11 >beta : { b: string; } 18 /// <reference types="beta" /> 23 === /test/types/beta/index.d.ts === 25 declare var beta: { b: string }; 26 >beta : { b: string; }
|
| D | elaboratedErrors.types | 30 interface Beta { y: number; } 36 var y: Beta; 37 >y : Beta 41 >x = y : Beta 43 >y : Beta 46 >x = y : Beta 48 >y : Beta 53 >y : Beta 58 >y : Beta
|
| D | elaboratedErrors.errors.txt | 3 tests/cases/compiler/elaboratedErrors.ts(20,1): error TS2741: Property 'x' is missing in type 'Beta… 4 tests/cases/compiler/elaboratedErrors.ts(21,1): error TS2322: Type 'Beta' is not assignable to type… 5 …Errors.ts(24,1): error TS2741: Property 'y' is missing in type 'Alpha' but required in type 'Beta'. 6 …es/compiler/elaboratedErrors.ts(25,1): error TS2322: Type 'Alpha' is not assignable to type 'Beta'. 27 interface Beta { y: number; } 29 var y: Beta; 34 !!! error TS2741: Property 'x' is missing in type 'Beta' but required in type 'Alpha'. 38 !!! error TS2322: Type 'Beta' is not assignable to type 'Alpha'. 43 !!! error TS2741: Property 'y' is missing in type 'Alpha' but required in type 'Beta'. 47 !!! error TS2322: Type 'Alpha' is not assignable to type 'Beta'.
|
| D | extendedInterfaceGenericType.types | 7 makeBetaOfNumber(): Beta<number>; 8 >makeBetaOfNumber : () => Beta<number> 10 interface Beta<T> extends Alpha<T> { 17 >betaOfNumber : Beta<number> 18 >alpha.makeBetaOfNumber() : Beta<number> 19 >alpha.makeBetaOfNumber : () => Beta<number> 21 >makeBetaOfNumber : () => Beta<number> 26 >betaOfNumber : Beta<number>
|
| D | moduleOuterQualification.js | 3 interface Beta { } 5 // .d.ts emit: should be 'extends outer.Beta' 6 export interface Beta extends outer.Beta { } 16 interface Beta { 19 interface Beta extends outer.Beta {
|
| D | constructorTagOnClassConstructor.types | 5 export class Beta { 6 >Beta : Beta 15 const arr = [Alpha, Beta]; 17 >[Alpha, Beta] : (typeof Alpha)[] 19 >Beta : typeof Beta
|
| D | jsdocParseMatchingBackticks.types | 10 * `@ * param` @param {string} beta hello??? 13 export function f(x, y, z, alpha, beta, gamma) { 14 >f : (x: string, y: string, z: string, alpha: string, beta: string, gamma: string) => string 19 >beta : string 22 return x + y + z + alpha + beta + gamma 23 >x + y + z + alpha + beta + gamma : string 24 >x + y + z + alpha + beta : string 32 >beta : string
|
| D | constructorTagOnClassConstructor.symbols | 5 export class Beta { 6 >Beta : Symbol(Beta, Decl(bug27025.js, 0, 22)) 15 const arr = [Alpha, Beta]; 18 >Beta : Symbol(Beta, Decl(bug27025.js, 0, 22))
|
| D | jsdocParseMatchingBackticks.symbols | 10 * `@ * param` @param {string} beta hello??? 13 export function f(x, y, z, alpha, beta, gamma) { 19 >beta : Symbol(beta, Decl(jsdocParseMatchingBackticks.js, 11, 33)) 22 return x + y + z + alpha + beta + gamma 27 >beta : Symbol(beta, Decl(jsdocParseMatchingBackticks.js, 11, 33))
|
| D | library-reference-8.js | 6 /// <reference types="beta" /> 11 declare var beta: { b: string }; 15 /// <reference types="beta" /> 16 var x: string = alpha.a + beta.b; 22 /// <reference types="beta" /> 23 var x = alpha.a + beta.b;
|
| /third_party/ffmpeg/libavcodec/aarch64/ |
| D | h264dsp_init_aarch64.c | 29 int beta, int8_t *tc0); 31 int beta, int8_t *tc0); 33 int beta); 35 int beta); 37 int beta, int8_t *tc0); 39 int beta, int8_t *tc0); 41 int beta, int8_t *tc0); 43 int alpha, int beta); 45 int alpha, int beta); 47 int alpha, int beta); [all …]
|
| /third_party/rust/crates/version_check/src/ |
| D | channel.rs | 7 Beta, enumerator 11 /// Release channel: "dev", "nightly", "beta", or "stable". 50 /// let beta = Channel::parse("1.32.0-beta").unwrap(); 51 /// assert!(beta.is_beta()); 62 } else if version.contains("-beta") || version == "beta" { in parse() 63 Some(Channel(Kind::Beta)) in parse() 75 Kind::Beta => "beta", in as_str() 95 /// let beta = Channel::parse("1.32.0-beta").unwrap(); 96 /// assert!(!beta.supports_features()); 104 Kind::Beta | Kind::Stable => false in supports_features() [all …]
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
| D | beta_distribution.h | 35 // Generate a floating-point variate conforming to a Beta distribution: 36 // pdf(x) \propto x^(alpha-1) * (1-x)^(beta-1), 37 // where the params alpha and beta are both strictly positive real values. 40 // to 0 or 1, due to numerical errors when alpha and beta are very different. 42 // Usage note: One usage is that alpha and beta are counts of number of 44 // approximating a beta distribution with a Gaussian distribution with the same 46 // smaller of alpha and beta when the number of trials are sufficiently large, 47 // to quantify how far a beta distribution is from the normal distribution. 57 explicit param_type(result_type alpha, result_type beta) in param_type() argument 58 : alpha_(alpha), beta_(beta) { in param_type() [all …]
|
| D | beta_distribution_test.cc | 99 for (TypeParam beta : kValues) { in TYPED_TEST() local 101 INFO, absl::StrFormat("Smoke test for Beta(%a, %a)", alpha, beta)); in TYPED_TEST() 103 param_type param(alpha, beta); in TYPED_TEST() 104 absl::beta_distribution<TypeParam> before(alpha, beta); in TYPED_TEST() 106 EXPECT_EQ(before.beta(), param.beta()); in TYPED_TEST() 127 EXPECT_NE(before.beta(), after.beta()); in TYPED_TEST() 134 EXPECT_EQ(before.beta(), after.beta()); in TYPED_TEST() 166 // Small alpha and beta. in TYPED_TEST() 169 // * Beta[1.0, 0.0000001, 0.0000001] in TYPED_TEST() 170 // * Beta[0.9999, 0.0000001, 0.0000001] in TYPED_TEST() [all …]
|
| /third_party/skia/third_party/externals/oboe/src/flowgraph/resampler/ |
| D | KaiserWindow.h | 35 * @return beta 38 double beta = 0.0; in setStopBandAttenuation() local 40 beta = 0.1102 * (attenuation - 8.7); in setStopBandAttenuation() 43 beta = 0.5842 * pow(a21, 0.4) + (0.07886 * a21); in setStopBandAttenuation() 45 setBeta(beta); in setStopBandAttenuation() 46 return beta; in setStopBandAttenuation() 49 void setBeta(double beta) { in setBeta() argument 50 mBeta = beta; in setBeta() 51 mInverseBesselBeta = 1.0 / bessel(beta); in setBeta()
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
| D | distribution_test_util.cc | 100 // to use std::beta(). As of this writing P0226R1 is not implemented 102 double beta(double p, double q) { in beta() function 103 // Beta(x, y) = Gamma(x) * Gamma(y) / Gamma(x+y) in beta() 192 // BETAIN(x, p, q, beta) 196 // beta: the value of ln B(p, q) 199 const double beta) { in BetaIncompleteImpl() argument 201 // Incomplete beta function is symmetrical, so return the complement. in BetaIncompleteImpl() 202 return 1. - BetaIncompleteImpl(1.0 - x, q, p, beta); in BetaIncompleteImpl() 209 std::exp(p * std::log(x) + (q - 1.) * std::log(xc) - beta) / p; in BetaIncompleteImpl() 246 // Direct implementation of AS109, XINBTA(p, q, beta, alpha) [all …]
|
| D | distribution_test_util.h | 73 // Beta(p, q) = Gamma(p) * Gamma(q) / Gamma(p+q) 74 double beta(double p, double q); 82 // Implements the incomplete regularized beta function, AS63, BETAIN. 87 // `p` is beta parameter p, `q` is beta parameter q. 94 // Implements the inverse of the incomplete regularized beta function, AS109, 99 // BetaIncompleteInv(p, q, beta, alhpa) 100 // `p` is beta parameter p, `q` is beta parameter q.
|
| /third_party/ffmpeg/libavfilter/ |
| D | af_anequalizer.c | 266 static void butterworth_fo_section(FoSection *S, double beta, in butterworth_fo_section() argument 271 S->b0 = (g*g*beta*beta + 2*g*g0*si*beta + g0*g0)/D; in butterworth_fo_section() 272 S->b1 = 2*c0*(g*g*beta*beta - g0*g0)/D; in butterworth_fo_section() 273 S->b2 = (g*g*beta*beta - 2*g0*g*beta*si + g0*g0)/D; in butterworth_fo_section() 278 S->a1 = 2*c0*(beta*beta - 1)/D; in butterworth_fo_section() 279 S->a2 = (beta*beta - 2*beta*si + 1)/D; in butterworth_fo_section() 283 S->b0 = (g*g*beta*beta + 2*g*g0*si*beta + g0*g0)/D; in butterworth_fo_section() 284 S->b1 = -4*c0*(g0*g0 + g*g0*si*beta)/D; in butterworth_fo_section() 285 S->b2 = 2*(g0*g0*(1 + 2*c0*c0) - g*g*beta*beta)/D; in butterworth_fo_section() 286 S->b3 = -4*c0*(g0*g0 - g*g0*si*beta)/D; in butterworth_fo_section() [all …]
|
| /third_party/rust/crates/bitflags/tests/ |
| D | compile.rs | 29 // output on beta (which is the next stable release). We do this by default ignoring 30 // any `.stderr` files in the `compile-fail` directory, and copying `.stderr.beta` files 31 // when we happen to be running on a beta compiler. 36 if entry.path().extension().and_then(OsStr::to_str) == Some("beta") { in prepare_stderr_files() 39 // Unconditionally remove a corresponding `.stderr` file for a `.stderr.beta` in prepare_stderr_files() 40 // file if it exists. On `beta` compilers, we'll recreate it. On other compilers, in prepare_stderr_files() 53 #[rustversion::beta] 60 #[rustversion::not(beta)]
|
| /third_party/python/Lib/test/ |
| D | test_getopt.py | 95 # note: the empty string between '-a' and '--beta' is significant: 98 cmdline = ['-a', '1', '-b', '--alpha=2', '--beta', '-a', '3', '-a', 99 '', '--beta', 'arg1', 'arg2'] 101 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta']) 103 ('--alpha', '2'), ('--beta', ''), 104 ('-a', '3'), ('-a', ''), ('--beta', '')]) 109 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta']) 113 cmdline = ['-a', 'arg1', '-b', '1', '--alpha', '--beta=2'] 116 opts, args = getopt.gnu_getopt(cmdline, 'ab:', ['alpha', 'beta=']) 119 ('--alpha', ''), ('--beta', '2')]) [all …]
|