Get number of bytes in X bits (rounding up) */
| 176 | |
| 177 | /* Get number of bytes in X bits (rounding up) */ |
| 178 | static uint32_t |
| 179 | ceil_byte_length(uint32_t num_bits) |
| 180 | { |
| 181 | if (num_bits % 8) |
| 182 | return ((num_bits >> 3) + 1); |
| 183 | else |
| 184 | return (num_bits >> 3); |
| 185 | } |
| 186 | |
| 187 | static void |
| 188 | post_process_raw_dp_op(void *user_data, uint32_t index __rte_unused, |
no outgoing calls
no test coverage detected