Symbol: fmaf
lib/msun/src/math.h
407
float fmaf(float, float, float);
lib/msun/tests/fma_test.c
112
test(fmaf, -FLT_MIN, FLT_MIN, 0.0, -0.0,
lib/msun/tests/fma_test.c
150
test(fmaf, FLT_MAX, FLT_MAX, -INFINITY, -INFINITY, ALL_STD_EXCEPT, 0);
lib/msun/tests/fma_test.c
154
test(fmaf, FLT_MAX, -FLT_MAX, INFINITY, INFINITY, ALL_STD_EXCEPT, 0);
lib/msun/tests/fma_test.c
171
test(fmaf, FLT_MIN, FLT_MIN, NAN, NAN, ALL_STD_EXCEPT, 0);
lib/msun/tests/fma_test.c
174
test(fmaf, FLT_MAX, FLT_MAX, NAN, NAN, ALL_STD_EXCEPT, 0);
lib/msun/tests/fma_test.c
187
test(fmaf, one, one, 0x1.0p-100, 1.0 + FLT_EPSILON,
lib/msun/tests/fma_test.c
200
test(fmaf, -one, one, -0x1.0p-100, -(1.0 + FLT_EPSILON),
lib/msun/tests/fma_test.c
213
test(fmaf, one, one, -0x1.0p-100, 1.0 - FLT_EPSILON / 2,
lib/msun/tests/fma_test.c
226
test(fmaf, -one, one, 0x1.0p-100, -1.0 + FLT_EPSILON / 2,
lib/msun/tests/fma_test.c
246
test(fmaf, 0x1.0p-50, 0x1.0p-50, 1.0, 1.0 + FLT_EPSILON,
lib/msun/tests/fma_test.c
259
test(fmaf, -0x1.0p-50, 0x1.0p-50, -1.0, -(1.0 + FLT_EPSILON),
lib/msun/tests/fma_test.c
272
test(fmaf, -0x1.0p-50, -0x1.0p-50, -1.0,
lib/msun/tests/fma_test.c
285
test(fmaf, 0x1.0p-50, -0x1.0p-50, 1.0, 1.0 - FLT_EPSILON / 2,
lib/msun/tests/fma_test.c
302
testrnd(fmaf, -0x1.c139d8p-51, -0x1.600e7ap32, 0x1.26558cp-38,
lib/msun/tests/fma_test.c
331
testrnd(fmaf, 0x1.98210ap53, 0x1.9556acp-24, 0x1.d87da4p70,
lib/msun/tests/fma_test.c
360
testrnd(fmaf, 0x1.31ad02p+100, 0x1.2fbf7ap-42, -0x1.c3e106p+58,
lib/msun/tests/fma_test.c
390
testrnd(fmaf, 0x1.bbffeep-30, -0x1.1d164cp-74, 0x1.ee7296p-104,
lib/msun/tests/fma_test.c
448
test(fmaf, 0x1.800002p+0, 0x1.800002p+0, -0x1.000002p-46, 0x1.200002p+1,
lib/msun/tests/fma_test.c
451
test(fmaf, 0x1.800002p+0, 0x1.800002p+0, -0x1.000002p-46, 0x1.200002p+1,
lib/msun/tests/fma_test.c
454
test(fmaf, 0x1.800002p+0, 0x1.800002p+0, -0x1.000002p-46, 0x1.200004p+1,
lib/msun/tests/fma_test.c
63
test(fmaf, (float)(x), (float)(y), (float)(z), \
tools/regression/include/tgmath/tgmath.c
112
float (fmaf)(float x, float y, float z) { n_float++; }