Path: blob/main/contrib/arm-optimized-routines/math/test/rtest/semi.h
48378 views
/*1* semi.h: header for semi.c2*3* Copyright (c) 1999-2019, Arm Limited.4* SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception5*/67#ifndef test_semi_h8#define test_semi_h910#include "types.h"1112char *test_ceil(uint32 *in, uint32 *out);13char *test_floor(uint32 *in, uint32 *out);14char *test_fmod(uint32 *a, uint32 *b, uint32 *out);15char *test_ldexp(uint32 *x, uint32 *n, uint32 *out);16char *test_frexp(uint32 *x, uint32 *out, uint32 *nout);17char *test_modf(uint32 *x, uint32 *iout, uint32 *fout);18char *test_ceilf(uint32 *in, uint32 *out);19char *test_floorf(uint32 *in, uint32 *out);20char *test_fmodf(uint32 *a, uint32 *b, uint32 *out);21char *test_ldexpf(uint32 *x, uint32 *n, uint32 *out);22char *test_frexpf(uint32 *x, uint32 *out, uint32 *nout);23char *test_modff(uint32 *x, uint32 *iout, uint32 *fout);2425char *test_copysign(uint32 *x, uint32 *y, uint32 *out);26char *test_copysignf(uint32 *x, uint32 *y, uint32 *out);27char *test_isfinite(uint32 *x, uint32 *out);28char *test_isfinitef(uint32 *x, uint32 *out);29char *test_isinf(uint32 *x, uint32 *out);30char *test_isinff(uint32 *x, uint32 *out);31char *test_isnan(uint32 *x, uint32 *out);32char *test_isnanf(uint32 *x, uint32 *out);33char *test_isnormal(uint32 *x, uint32 *out);34char *test_isnormalf(uint32 *x, uint32 *out);35char *test_signbit(uint32 *x, uint32 *out);36char *test_signbitf(uint32 *x, uint32 *out);37char *test_fpclassify(uint32 *x, uint32 *out);38char *test_fpclassifyf(uint32 *x, uint32 *out);3940char *test_isgreater(uint32 *x, uint32 *y, uint32 *out);41char *test_isgreaterequal(uint32 *x, uint32 *y, uint32 *out);42char *test_isless(uint32 *x, uint32 *y, uint32 *out);43char *test_islessequal(uint32 *x, uint32 *y, uint32 *out);44char *test_islessgreater(uint32 *x, uint32 *y, uint32 *out);45char *test_isunordered(uint32 *x, uint32 *y, uint32 *out);46char *test_isgreaterf(uint32 *x, uint32 *y, uint32 *out);47char *test_isgreaterequalf(uint32 *x, uint32 *y, uint32 *out);48char *test_islessf(uint32 *x, uint32 *y, uint32 *out);49char *test_islessequalf(uint32 *x, uint32 *y, uint32 *out);50char *test_islessgreaterf(uint32 *x, uint32 *y, uint32 *out);51char *test_isunorderedf(uint32 *x, uint32 *y, uint32 *out);52#endif535455