You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constuint32_t * __restrict__ m_data; ///< The bitpacked data we're reading as a dword array.
782
-
uint64_t m_scratch; ///< The scratch value. New data is read in 32 bits at a top to the left of this buffer, and data is read off to the right.
783
-
int m_numBits; ///< Number of bits to read in the buffer. Of course, we can't *really* know this so it's actually m_numBytes * 8.
784
-
int m_numBytes; ///< Number of bytes to read in the buffer. We know this, and this is the non-rounded up version.
787
+
constuint32_t * serialize_restrict m_data;///< The bitpacked data we're reading as a dword array.
788
+
uint64_t m_scratch; ///< The scratch value. New data is read in 32 bits at a top to the left of this buffer, and data is read off to the right.
789
+
int m_numBits; ///< Number of bits to read in the buffer. Of course, we can't *really* know this so it's actually m_numBytes * 8.
790
+
int m_numBytes; ///< Number of bytes to read in the buffer. We know this, and this is the non-rounded up version.
785
791
#ifdef SERIALIZE_DEBUG
786
-
int m_numWords; ///< Number of words to read in the buffer. This is rounded up to the next word if necessary.
792
+
int m_numWords; ///< Number of words to read in the buffer. This is rounded up to the next word if necessary.
787
793
#endif// #ifdef SERIALIZE_DEBUG
788
-
int m_bitsRead; ///< Number of bits read from the buffer so far.
789
-
int m_scratchBits; ///< Number of bits currently in the scratch value. If the user wants to read more bits than this, we have to go fetch another dword from memory.
790
-
int m_wordIndex; ///< Index of the next word to read from memory.
794
+
int m_bitsRead; ///< Number of bits read from the buffer so far.
795
+
int m_scratchBits; ///< Number of bits currently in the scratch value. If the user wants to read more bits than this, we have to go fetch another dword from memory.
796
+
int m_wordIndex; ///< Index of the next word to read from memory.
0 commit comments