Home
last modified time | relevance | path

Searched refs:kln2 (Results 1 – 6 of 6) sorted by relevance

/third_party/musl/porting/liteos_a/kernel/src/math/
D__expo2f.c5 static const float kln2 = 0x1.45c778p+7f; variable
15 return expf(x - kln2) * scale * scale; in __expo2f()
D__expo2.c5 static const double kln2 = 0x1.62066151add8bp+10; variable
15 return exp(x - kln2) * scale * scale; in __expo2()
/third_party/musl/src/math/
D__expo2f.c5 static const float kln2 = 0x1.45c778p+7f; variable
15 return expf(x - kln2) * scale * scale; in __expo2f()
D__expo2.c5 static const double kln2 = 0x1.62066151add8bp+10; variable
15 return exp(x - kln2) * scale * scale; in __expo2()
/third_party/musl/src/complex/
D__cexpf.c31 static const float kln2 = 162.88958740F; /* k * ln2 */ variable
44 exp_x = expf(x - kln2); in __frexp_expf()
D__cexp.c31 static const double kln2 = 1246.97177782734161156; /* k * ln2 */ variable
51 exp_x = exp(x - kln2); in __frexp_exp()