Changes in uspace/lib/softfloat/include/conversion.h [750636a:00acd66] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/include/conversion.h
r750636a r00acd66 27 27 */ 28 28 29 /** @addtogroup softfloat 29 /** @addtogroup softfloat 30 30 * @{ 31 31 */ … … 36 36 #define __CONVERSION_H__ 37 37 38 extern float64 convertFloat32ToFloat64(float32); 39 extern float32 convertFloat64ToFloat32(float64); 38 float64 convertFloat32ToFloat64(float32 a); 40 39 41 extern uint32_t float32_to_uint32(float32); 42 extern int32_t float32_to_int32(float32); 40 float32 convertFloat64ToFloat32(float64 a); 43 41 44 extern uint64_t float32_to_uint64(float32);45 extern int64_t float32_to_int64(float32);42 uint32_t float32_to_uint32(float32 a); 43 int32_t float32_to_int32(float32 a); 46 44 47 extern uint64_t float64_to_uint64(float64);48 extern int64_t float64_to_int64(float64);45 uint64_t float32_to_uint64(float32 a); 46 int64_t float32_to_int64(float32 a); 49 47 50 extern uint32_t float64_to_uint32(float64);51 extern int32_t float64_to_int32(float64);48 uint64_t float64_to_uint64(float64 a); 49 int64_t float64_to_int64(float64 a); 52 50 53 extern float32 uint32_to_float32(uint32_t);54 extern float32 int32_to_float32(int32_t);51 uint32_t float64_to_uint32(float64 a); 52 int32_t float64_to_int32(float64 a); 55 53 56 extern float32 uint64_to_float32(uint64_t);57 extern float32 int64_to_float32(int64_t);54 float32 uint32_to_float32(uint32_t i); 55 float32 int32_to_float32(int32_t i); 58 56 59 extern float64 uint32_to_float64(uint32_t);60 extern float64 int32_to_float64(int32_t);57 float32 uint64_to_float32(uint64_t i); 58 float32 int64_to_float32(int64_t i); 61 59 62 extern float64 uint64_to_float64(uint64_t); 63 extern float64 int64_to_float64(int64_t); 60 float64 uint32_to_float64(uint32_t i); 61 float64 int32_to_float64(int32_t i); 62 63 float64 uint64_to_float64(uint64_t i); 64 float64 int64_to_float64(int64_t i); 64 65 65 66 #endif 66 67 67 /** @} 68 69 /** @} 68 70 */ 71
Note:
See TracChangeset
for help on using the changeset viewer.