| 150 | // interger power of two |
| 151 | template <typename T> |
| 152 | T POW2(T m) |
| 153 | { |
| 154 | return T(1) << m; |
| 155 | } |
| 156 | |
| 157 | /* initialize constants in ftable */ |
| 158 | int sp_ftbl_init(sp_data * sp, sp_ftbl * ft, size_t size) |
no outgoing calls
no test coverage detected