| 211 | } |
| 212 | |
| 213 | static inline void ggml_bitset_set(ggml_bitset_t * bitset, size_t i) { |
| 214 | bitset[i >> BITSET_SHR] |= (1u << (i & BITSET_MASK)); |
| 215 | } |
| 216 | |
| 217 | static inline void ggml_bitset_clear(ggml_bitset_t * bitset, size_t i) { |
| 218 | bitset[i >> BITSET_SHR] &= ~(1u << (i & BITSET_MASK)); |
no outgoing calls
no test coverage detected