(tagged_ptr: *const T)
| 301 | |
| 302 | #[inline(always)] |
| 303 | pub(super) fn get<const MASK: usize, T>(tagged_ptr: *const T) -> usize { |
| 304 | check_mask!(T, MASK); |
| 305 | tagged_ptr.addr() & MASK |
| 306 | } |
| 307 | |
| 308 | #[inline(always)] |
| 309 | pub(super) fn set<const MASK: usize, T>(pcell: &Cell<*const T>, tag: usize) { |
no outgoing calls
no test coverage detected