Scalar decoding of an ALP vector
| 132 | |
| 133 | //! Scalar decoding of an ALP vector |
| 134 | static inline void decode(const ST* encoded_integers, const uint8_t fac_idx, const uint8_t exp_idx, PT* output) { |
| 135 | for (size_t i {0}; i < config::VECTOR_SIZE; i++) { |
| 136 | output[i] = decode_value(encoded_integers[i], fac_idx, exp_idx); |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | //! Patch Exceptions |
| 141 | static inline void patch_exceptions(PT* out, |
nothing calls this directly
no outgoing calls
no test coverage detected