| 76 | }; |
| 77 | |
| 78 | static inline void |
| 79 | __rte_bitmap_index1_inc(struct rte_bitmap *bmp) |
| 80 | { |
| 81 | bmp->index1 = (bmp->index1 + 1) & (bmp->array1_size - 1); |
| 82 | } |
| 83 | |
| 84 | static inline uint64_t |
| 85 | __rte_bitmap_mask1_get(struct rte_bitmap *bmp) |
no outgoing calls
no test coverage detected