| 205 | } |
| 206 | |
| 207 | static inline void ggml_bitset_set(ggml_bitset_t * bitset, size_t i) { |
| 208 | bitset[i >> BITSET_SHR] |= (1u << (i & BITSET_MASK)); |
| 209 | } |
| 210 | |
| 211 | static inline void ggml_bitset_clear(ggml_bitset_t * bitset, size_t i) { |
| 212 | bitset[i >> BITSET_SHR] &= ~(1u << (i & BITSET_MASK)); |
no outgoing calls
no test coverage detected