| 986 | value. */ |
| 987 | |
| 988 | void xsum_small_add1 (xsum_small_accumulator *restrict sacc, xsum_flt value) |
| 989 | { |
| 990 | if (sacc->adds_until_propagate == 0) |
| 991 | { (void) xsum_carry_propagate(sacc); |
| 992 | } |
| 993 | |
| 994 | xsum_add1_no_carry (sacc, value); |
| 995 | |
| 996 | sacc->adds_until_propagate -= 1; |
| 997 | } |
| 998 | |
| 999 | |
| 1000 | /* ADD A VECTOR OF FLOATING-POINT NUMBERS TO A SMALL ACCUMULATOR. Mixes |
no test coverage detected