Changeset 90924df in mainline for uspace/lib/softfloat/include/common.h
- Timestamp:
- 2012-04-08T12:08:49Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f2b3d3e
- Parents:
- d9f53877 (diff), f3378ba (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/common.h
rd9f53877 r90924df 39 39 #include <sftypes.h> 40 40 41 extern float64 finish Float64(int32_t, uint64_t, char);42 extern float128 finish Float128(int32_t, uint64_t, uint64_t, char, uint64_t);41 extern float64 finish_float64(int32_t, uint64_t, char); 42 extern float128 finish_float128(int32_t, uint64_t, uint64_t, char, uint64_t); 43 43 44 extern int count Zeroes8(uint8_t);45 extern int count Zeroes32(uint32_t);46 extern int count Zeroes64(uint64_t);44 extern int count_zeroes8(uint8_t); 45 extern int count_zeroes32(uint32_t); 46 extern int count_zeroes64(uint64_t); 47 47 48 extern void round Float32(int32_t *, uint32_t *);49 extern void round Float64(int32_t *, uint64_t *);50 extern void round Float128(int32_t *, uint64_t *, uint64_t *);48 extern void round_float32(int32_t *, uint32_t *); 49 extern void round_float64(int32_t *, uint64_t *); 50 extern void round_float128(int32_t *, uint64_t *, uint64_t *); 51 51 52 52 extern void lshift128(uint64_t, uint64_t, int, uint64_t *, uint64_t *);
Note:
See TracChangeset
for help on using the changeset viewer.