| 39 | } |
| 40 | |
| 41 | bool |
| 42 | pdcp_cnt_bitmap_is_set(struct pdcp_cnt_bitmap bitmap, uint32_t count) |
| 43 | { |
| 44 | return rte_bitmap_get(bitmap.bmp, count % bitmap.size); |
| 45 | } |
| 46 | |
| 47 | void |
| 48 | pdcp_cnt_bitmap_range_clear(struct pdcp_cnt_bitmap bitmap, uint32_t start, uint32_t stop) |
no test coverage detected