Lines Matching full:float

47 	float (FNC ## f)(float x) { n_float++; }			\
52 float (FNC ## f)(float x, float y) { n_float++; } \
58 TYPE (FNC ## f)(float x) { n_float++; } \
63 float complex (FNC ## f)(float complex x) { n_float_complex++; }\
69 float (FNC ## f)(float complex x) { n_float_complex++; } \
91 float complex (cpowf)(float complex x, float complex y) { n_float_complex++; } in TGMACRO()
112 float (fmaf)(float x, float y, float z) { n_float++; } in TGMACRO_REAL()
119 float (frexpf)(float x, int *e) { n_float++; } in TGMACRO_REAL_REAL()
124 float (ldexpf)(float x, int e) { n_float++; } in TGMACRO_REAL_FIXED_RET()
138 float (nexttowardf)(float x, long double y) { n_float++; } in TGMACRO_REAL_FIXED_RET()
142 float (remquof)(float x, float y, int *q) { n_float++; } in TGMACRO_REAL_REAL()
147 float (scalbnf)(float x, int n) { n_float++; } in TGMACRO_REAL()
150 float (scalblnf)(float x, long n) { n_float++; }
166 float f;
169 float complex fc;
199 RUN_TEST(FNC(1.f), float) && \
200 RUN_TEST(FNC(f), float) && \
235 RUN_TEST(FNC(1.f, ARG2), float) && \
236 RUN_TEST(FNC(f, ARG2), float) && \
267 RUN_TEST(FNC(1.f, 1.f), float) && \
268 RUN_TEST(FNC(1.f, 1.f), float) && \
269 RUN_TEST(FNC(f, 1.f), float) && \
270 RUN_TEST(FNC(f, f), float) && \
301 RUN_TEST(FNC(1.f, 1.f, ARG3), float) && \
302 RUN_TEST(FNC(1.f, 1.f, ARG3), float) && \
303 RUN_TEST(FNC(f, 1.f, ARG3), float) && \
304 RUN_TEST(FNC(f, f, ARG3), float) && \
317 RUN_TEST(FNC(f, 1.f, f), float) && \
331 RUN_TEST(FNC(1.f), float complex) && \
332 RUN_TEST(FNC(f), float complex) && \
341 RUN_TEST(FNC(fc), float complex) && \
342 RUN_TEST(FNC(I), float complex) && \
351 RUN_TEST(FNC(fc), float) && \
352 RUN_TEST(FNC(I), float) && \
386 RUN_TEST(FNC(fc, fc), float complex) && \
387 RUN_TEST(FNC(fc, I), float complex) && \
388 RUN_TEST(FNC(1.f, fc), float complex) && \