Lines Matching refs:real64
38 real64 dng_1d_function::EvaluateInverse (real64 y) const in EvaluateInverse()
42 const real64 kNearZero = 1.0e-10; in EvaluateInverse()
44 real64 x0 = 0.0; in EvaluateInverse()
45 real64 y0 = Evaluate (x0); in EvaluateInverse()
47 real64 x1 = 1.0; in EvaluateInverse()
48 real64 y1 = Evaluate (x1); in EvaluateInverse()
58 real64 x2 = Pin_real64 (0.0, in EvaluateInverse()
62 real64 y2 = Evaluate (x2); in EvaluateInverse()
87 real64 dng_1d_identity::Evaluate (real64 x) const in Evaluate()
96 real64 dng_1d_identity::EvaluateInverse (real64 x) const in EvaluateInverse()
138 real64 dng_1d_concatenate::Evaluate (real64 x) const in Evaluate()
141 real64 y = Pin_real64 (0.0, fFunction1.Evaluate (x), 1.0); in Evaluate()
149 real64 dng_1d_concatenate::EvaluateInverse (real64 x) const in EvaluateInverse()
152 real64 y = fFunction2.EvaluateInverse (x); in EvaluateInverse()
179 real64 dng_1d_inverse::Evaluate (real64 x) const in Evaluate()
188 real64 dng_1d_inverse::EvaluateInverse (real64 y) const in EvaluateInverse()