Changeset 544a2e4 in mainline for uspace/lib/softfloat/include/conversion.h
- Timestamp:
- 2011-05-30T21:37:43Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7b712b60
- Parents:
- 18ba2e4f (diff), 0743493a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/include/conversion.h
r18ba2e4f r544a2e4 27 27 */ 28 28 29 /** @addtogroup softfloat 29 /** @addtogroup softfloat 30 30 * @{ 31 31 */ … … 36 36 #define __CONVERSION_H__ 37 37 38 float64 convertFloat32ToFloat64(float32 a); 38 extern float64 convertFloat32ToFloat64(float32); 39 extern float32 convertFloat64ToFloat32(float64); 39 40 40 float32 convertFloat64ToFloat32(float64 a); 41 extern uint32_t float32_to_uint32(float32); 42 extern int32_t float32_to_int32(float32); 41 43 42 uint32_t float32_to_uint32(float32 a);43 int32_t float32_to_int32(float32 a);44 extern uint64_t float32_to_uint64(float32); 45 extern int64_t float32_to_int64(float32); 44 46 45 uint64_t float32_to_uint64(float32 a);46 int64_t float32_to_int64(float32 a);47 extern uint64_t float64_to_uint64(float64); 48 extern int64_t float64_to_int64(float64); 47 49 48 uint64_t float64_to_uint64(float64 a);49 int64_t float64_to_int64(float64 a);50 extern uint32_t float64_to_uint32(float64); 51 extern int32_t float64_to_int32(float64); 50 52 51 uint32_t float64_to_uint32(float64 a);52 int32_t float64_to_int32(float64 a);53 extern float32 uint32_to_float32(uint32_t); 54 extern float32 int32_to_float32(int32_t); 53 55 54 float32 uint32_to_float32(uint32_t i);55 float32 int32_to_float32(int32_t i);56 extern float32 uint64_to_float32(uint64_t); 57 extern float32 int64_to_float32(int64_t); 56 58 57 float32 uint64_to_float32(uint64_t i);58 float32 int64_to_float32(int64_t i);59 extern float64 uint32_to_float64(uint32_t); 60 extern float64 int32_to_float64(int32_t); 59 61 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); 62 extern float64 uint64_to_float64(uint64_t); 63 extern float64 int64_to_float64(int64_t); 65 64 66 65 #endif 67 66 68 69 /** @} 67 /** @} 70 68 */ 71
Note:
See TracChangeset
for help on using the changeset viewer.