Sha256: 1a73400454a25503a23f5d9be7f2b9f0410a19b8454e8e8abe495600ea0f9d1a
Contents?: true
Size: 1.54 KB
Versions: 6
Compression:
Stored size: 1.54 KB
Contents
// Protocol Buffers - Google's data interchange format // Copyright 2023 Google LLC. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd #ifndef UPB_MINI_TABLE_INTERNAL_TAGGED_PTR_H_ #define UPB_MINI_TABLE_INTERNAL_TAGGED_PTR_H_ #include <stdint.h> #include "upb/message/internal/message.h" // Must be last. #include "upb/port/def.inc" #ifdef __cplusplus extern "C" { #endif // Internal-only because empty messages cannot be created by the user. UPB_INLINE uintptr_t UPB_PRIVATE(_upb_TaggedMessagePtr_Pack)(struct upb_Message* ptr, bool empty) { UPB_ASSERT(((uintptr_t)ptr & 1) == 0); return (uintptr_t)ptr | (empty ? 1 : 0); } UPB_API_INLINE bool upb_TaggedMessagePtr_IsEmpty(uintptr_t ptr) { return ptr & 1; } UPB_INLINE struct upb_Message* UPB_PRIVATE(_upb_TaggedMessagePtr_GetMessage)( uintptr_t ptr) { return (struct upb_Message*)(ptr & ~(uintptr_t)1); } UPB_API_INLINE struct upb_Message* upb_TaggedMessagePtr_GetNonEmptyMessage( uintptr_t ptr) { UPB_ASSERT(!upb_TaggedMessagePtr_IsEmpty(ptr)); return UPB_PRIVATE(_upb_TaggedMessagePtr_GetMessage)(ptr); } UPB_INLINE struct upb_Message* UPB_PRIVATE( _upb_TaggedMessagePtr_GetEmptyMessage)(uintptr_t ptr) { UPB_ASSERT(upb_TaggedMessagePtr_IsEmpty(ptr)); return UPB_PRIVATE(_upb_TaggedMessagePtr_GetMessage)(ptr); } #ifdef __cplusplus } /* extern "C" */ #endif #include "upb/port/undef.inc" #endif /* UPB_MINI_TABLE_INTERNAL_TAGGED_PTR_H_ */
Version data entries
6 entries across 6 versions & 1 rubygems