| 251 | |
| 252 | ABSL_ATTRIBUTE_RETURNS_NONNULL |
| 253 | static const common_internal::ReferenceCount* absl_nonnull AsReferenceCount( |
| 254 | uintptr_t ptr) noexcept { |
| 255 | ABSL_ASSERT(IsReferenceCount(ptr)); |
| 256 | return reinterpret_cast<const common_internal::ReferenceCount*>( |
| 257 | ptr & kPointerMask); |
| 258 | } |
| 259 | |
| 260 | static uintptr_t CopyFrom(uintptr_t other) noexcept { return Own(other); } |
| 261 |
no test coverage detected