Changes in uspace/lib/softfloat/include/common.h [c67aff2:88d5c1e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/include/common.h
rc67aff2 r88d5c1e 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.