hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (c) 2015, Linaro Limited
 * All rights reserved.
 */
 
#ifndef TEST_FLOAT_SUBJ_H
#define TEST_FLOAT_SUBJ_H
 
double test_float_dadd(double a, double b);
double test_float_ddiv(double a, double b);
double test_float_dmul(double a, double b);
double test_float_drsub(double a, double b);
double test_float_dsub(double a, double b);
int test_float_dcmpeq(double a, double b);
int test_float_dcmplt(double a, double b);
int test_float_dcmple(double a, double b);
int test_float_dcmpge(double a, double b);
int test_float_dcmpgt(double a, double b);
float test_float_fadd(float a, float b);
float test_float_fdiv(float a, float b);
float test_float_fmul(float a, float b);
float test_float_frsub(float a, float b);
float test_float_fsub(float a, float b);
int test_float_fcmpeq(float a, float b);
int test_float_fcmplt(float a, float b);
int test_float_fcmple(float a, float b);
int test_float_fcmpge(float a, float b);
int test_float_fcmpgt(float a, float b);
int test_float_d2iz(double a);
unsigned test_float_d2uiz(double a);
long long test_float_d2lz(double a);
unsigned long long test_float_d2ulz(double a);
int test_float_f2iz(float a);
unsigned test_float_f2uiz(float a);
long long test_float_f2lz(float a);
unsigned long long test_float_f2ulz(float a);
float test_float_d2f(double a);
double test_float_f2d(float a);
double test_float_i2d(int a);
double test_float_ui2d(unsigned a);
double test_float_l2d(long long a);
double test_float_ul2d(unsigned long long a);
float test_float_i2f(int a);
float test_float_ui2f(unsigned a);
float test_float_l2f(long long a);
float test_float_ul2f(unsigned long long a);
 
#endif /*TEST_FLOAT_SUBJ_H*/