| 33 | } |
| 34 | |
| 35 | void |
| 36 | pdcp_cnt_bitmap_set(struct pdcp_cnt_bitmap bitmap, uint32_t count) |
| 37 | { |
| 38 | rte_bitmap_set(bitmap.bmp, count % bitmap.size); |
| 39 | } |
| 40 | |
| 41 | bool |
| 42 | pdcp_cnt_bitmap_is_set(struct pdcp_cnt_bitmap bitmap, uint32_t count) |
no test coverage detected