55 lines · c
1/*2 * semi.h: header for semi.c3 *4 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.5 * See https://llvm.org/LICENSE.txt for license information.6 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7 */8 9#ifndef test_semi_h10#define test_semi_h11 12#include "types.h"13 14char *test_ceil(uint32 *in, uint32 *out);15char *test_floor(uint32 *in, uint32 *out);16char *test_fmod(uint32 *a, uint32 *b, uint32 *out);17char *test_ldexp(uint32 *x, uint32 *n, uint32 *out);18char *test_frexp(uint32 *x, uint32 *out, uint32 *nout);19char *test_modf(uint32 *x, uint32 *iout, uint32 *fout);20char *test_ceilf(uint32 *in, uint32 *out);21char *test_floorf(uint32 *in, uint32 *out);22char *test_fmodf(uint32 *a, uint32 *b, uint32 *out);23char *test_ldexpf(uint32 *x, uint32 *n, uint32 *out);24char *test_frexpf(uint32 *x, uint32 *out, uint32 *nout);25char *test_modff(uint32 *x, uint32 *iout, uint32 *fout);26 27char *test_copysign(uint32 *x, uint32 *y, uint32 *out);28char *test_copysignf(uint32 *x, uint32 *y, uint32 *out);29char *test_isfinite(uint32 *x, uint32 *out);30char *test_isfinitef(uint32 *x, uint32 *out);31char *test_isinf(uint32 *x, uint32 *out);32char *test_isinff(uint32 *x, uint32 *out);33char *test_isnan(uint32 *x, uint32 *out);34char *test_isnanf(uint32 *x, uint32 *out);35char *test_isnormal(uint32 *x, uint32 *out);36char *test_isnormalf(uint32 *x, uint32 *out);37char *test_signbit(uint32 *x, uint32 *out);38char *test_signbitf(uint32 *x, uint32 *out);39char *test_fpclassify(uint32 *x, uint32 *out);40char *test_fpclassifyf(uint32 *x, uint32 *out);41 42char *test_isgreater(uint32 *x, uint32 *y, uint32 *out);43char *test_isgreaterequal(uint32 *x, uint32 *y, uint32 *out);44char *test_isless(uint32 *x, uint32 *y, uint32 *out);45char *test_islessequal(uint32 *x, uint32 *y, uint32 *out);46char *test_islessgreater(uint32 *x, uint32 *y, uint32 *out);47char *test_isunordered(uint32 *x, uint32 *y, uint32 *out);48char *test_isgreaterf(uint32 *x, uint32 *y, uint32 *out);49char *test_isgreaterequalf(uint32 *x, uint32 *y, uint32 *out);50char *test_islessf(uint32 *x, uint32 *y, uint32 *out);51char *test_islessequalf(uint32 *x, uint32 *y, uint32 *out);52char *test_islessgreaterf(uint32 *x, uint32 *y, uint32 *out);53char *test_isunorderedf(uint32 *x, uint32 *y, uint32 *out);54#endif55