Home
last modified time | relevance | path

Searched refs:a_plus_one (Results 1 – 3 of 3) sorted by relevance

/external/adhd/cras/src/dsp/
Dbiquad.c170 double a_plus_one = A + 1; in biquad_lowshelf() local
173 double b0 = A * (a_plus_one - a_minus_one * k + k2); in biquad_lowshelf()
174 double b1 = 2 * A * (a_minus_one - a_plus_one * k); in biquad_lowshelf()
175 double b2 = A * (a_plus_one - a_minus_one * k - k2); in biquad_lowshelf()
176 double a0 = a_plus_one + a_minus_one * k + k2; in biquad_lowshelf()
177 double a1 = -2 * (a_minus_one + a_plus_one * k); in biquad_lowshelf()
178 double a2 = a_plus_one + a_minus_one * k - k2; in biquad_lowshelf()
205 double a_plus_one = A + 1; in biquad_highshelf() local
208 double b0 = A * (a_plus_one + a_minus_one * k + k2); in biquad_highshelf()
209 double b1 = -2 * A * (a_minus_one + a_plus_one * k); in biquad_highshelf()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Delemental_ir_emitter.cc501 auto a_plus_one = FAdd(a, one); in EmitComplexUnaryOp() local
502 auto sum_sq = FAdd(FMul(a_plus_one, a_plus_one), FMul(b, b)); in EmitComplexUnaryOp()
504 TF_ASSIGN_OR_RETURN(auto angle, EmitAtan2(component_type, b, a_plus_one)); in EmitComplexUnaryOp()
/external/tensorflow/tensorflow/core/grappler/costs/
Dgraph_properties_test.cc1815 Output a_plus_one = ops::Add(s.WithOpName("a_plus_one"), a, a1); in TEST_F() local