Changes in uspace/lib/softfloat/include/common.h [88d5c1e:c67aff2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/include/common.h
r88d5c1e rc67aff2 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 finishFloat64(int32_t, uint64_t, char); 42 extern float128 finishFloat128(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 countZeroes8(uint8_t); 45 extern int countZeroes32(uint32_t); 46 extern int countZeroes64(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 roundFloat32(int32_t *, uint32_t *); 49 extern void roundFloat64(int32_t *, uint64_t *); 50 extern void roundFloat128(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.