Lines Matching defs:exp
2145 class Exp : public ExpFunc { public: Exp (void) : ExpFunc("exp", deExp) {} };
2148 ExprP<float> exp (const ExprP<float>& x) { return app<Exp>(x); }
2524 DEFINE_DERIVED_FLOAT1(Sinh, sinh, x, (exp(x) - exp(-x)) / constant(2.0f))
2525 DEFINE_DERIVED_FLOAT1(Cosh, cosh, x, (exp(x) + exp(-x)) / constant(2.0f))
4222 const int exp = rnd.getInt(0, getNumBits(prec)-2);
4225 return sign * rnd.getInt(0, (deInt32)1 << exp);
4274 const int exp = int(deRoundEven(dePow(rnd.getDouble(minRoot, maxRoot),
4292 if (exp >= minExp)
4295 base = deFloatLdExp(1.0f, exp);
4296 quantum = deFloatLdExp(1.0f, exp - fractionBits);