Lines Matching refs:bit
344 extern BOOL CXiVerifyHuffmanTable_( const void* pTable, u8 bit );
356 CXiVerifyHuffmanTable_( const void* pTable, u8 bit ) in CXiVerifyHuffmanTable_() argument
372 if ( bit == 4 ) in CXiVerifyHuffmanTable_()
736 s8 bit; in BitReader_Read() local
747 bit = (s8)( (context->stream >> (context->stream_len - 1)) & 0x1 ); in BitReader_Read()
749 return bit; in BitReader_Read()
754 extern BOOL CXiLHVerifyTable( const void* pTable, u8 bit );
767 CXiLHVerifyTable( const void* pTable, u8 bit ) in CXiLHVerifyTable() argument
782 const u16 ofs_mask = (u16)( (1 << (bit - 2)) - 1 ); in CXiLHVerifyTable()
783 const u16 l_mask = (u16)( 1 << (bit - 1) ); in CXiLHVerifyTable()
784 const u16 r_mask = (u16)( 1 << (bit - 2) ); in CXiLHVerifyTable()
791 if ( treeSize > (1U << (bit + 1)) ) in CXiLHVerifyTable()
923 s8 bit = BitReader_Read( &stream ); in CXSecureUncompressLH() local
924 u32 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in CXSecureUncompressLH()
925 if ( bit < 0 ) in CXSecureUncompressLH()
930 if ( *nodep & (0x100 >> bit) ) in CXSecureUncompressLH()
955 s8 bit = BitReader_Read( &stream ); in CXSecureUncompressLH() local
956 u32 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in CXSecureUncompressLH()
958 if ( bit < 0 ) in CXSecureUncompressLH()
963 if ( *nodep & (LEAF_FLAG >> bit) ) in CXSecureUncompressLH()