Changeset 1d83419 in mainline for softfloat/include/conversion.h


Ignore:
Timestamp:
2006-02-24T17:27:19Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ba5870d
Parents:
a82695c
Message:

32 bit integers to float type conversions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • softfloat/include/conversion.h

    ra82695c r1d83419  
    3636__u32 float32_to_uint32(float32 a);
    3737__s32 float32_to_int32(float32 a);
     38
     39__u64 float32_to_uint64(float32 a);
     40__s64 float32_to_int64(float32 a);
     41
    3842__u64 float64_to_uint64(float64 a);
    3943__s64 float64_to_int64(float64 a);
    40 __u64 float32_to_uint64(float32 a);
    41 __s64 float32_to_int64(float32 a);
     44
    4245__u32 float64_to_uint32(float64 a);
    4346__s32 float64_to_int32(float64 a);
    4447
     48float32 uint32_to_float32(__u32 i);
     49float32 int32_to_float32(__s32 i);
    4550
     51float32 uint64_to_float32(__u64 i);
     52float32 int64_to_float32(__s64 i);
    4653#endif
    4754
Note: See TracChangeset for help on using the changeset viewer.