| 150 | } bf_context_t; |
| 151 | |
| 152 | static inline int bf_get_exp_bits(bf_flags_t flags) |
| 153 | { |
| 154 | int e; |
| 155 | e = (flags >> BF_EXP_BITS_SHIFT) & BF_EXP_BITS_MASK; |
| 156 | if (e == BF_EXP_BITS_MASK) |
| 157 | return BF_EXP_BITS_MAX + 1; |
| 158 | else |
| 159 | return BF_EXP_BITS_MAX - e; |
| 160 | } |
| 161 | |
| 162 | static inline bf_flags_t bf_set_exp_bits(int n) |
| 163 | { |
no outgoing calls
no test coverage detected