Lines Matching full:float

44 #include <float.h>
53 #define raise_inexact() do { volatile float junk __unused = 1 + tiny; } while(0)
57 static const float
70 static const volatile float
74 static float complex clog_for_large_values(float complex z);
76 static inline float
77 f(float a, float b, float hypot_a_b) in f()
87 do_hard_work(float x, float y, float *rx, int *B_is_usable, float *B, in do_hard_work()
88 float *sqrt_A2my2, float *new_y) in do_hard_work()
90 float R, S, A; in do_hard_work()
91 float Am1, Amy; in do_hard_work()
144 float complex
145 casinhf(float complex z) in casinhf()
147 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; in casinhf()
149 float complex w; in casinhf()
191 float complex
192 casinf(float complex z) in casinf()
194 float complex w = casinhf(CMPLXF(cimagf(z), crealf(z))); in casinf()
199 float complex
200 cacosf(float complex z) in cacosf()
202 float x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; in cacosf()
205 float complex w; in cacosf()
258 float complex
259 cacoshf(float complex z) in cacoshf()
261 float complex w; in cacoshf()
262 float rx, ry; in cacoshf()
276 static float complex
277 clog_for_large_values(float complex z) in clog_for_large_values()
279 float x, y; in clog_for_large_values()
280 float ax, ay, t; in clog_for_large_values()
302 static inline float
303 sum_squares(float x, float y) in sum_squares()
312 static inline float
313 real_part_reciprocal(float x, float y) in real_part_reciprocal()
315 float scale; in real_part_reciprocal()
337 float complex
338 catanhf(float complex z) in catanhf()
340 float x, y, ax, ay, rx, ry; in catanhf()
386 float complex
387 catanf(float complex z) in catanf()
389 float complex w = catanhf(CMPLXF(cimagf(z), crealf(z))); in catanf()