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_()
745 s8 bit; in BitReader_Read() local
756 bit = (s8)( (context->stream >> (context->stream_len - 1)) & 0x1 ); in BitReader_Read()
758 return bit; in BitReader_Read()
763 extern BOOL CXiLHVerifyTable( const void* pTable, u8 bit );
776 CXiLHVerifyTable( const void* pTable, u8 bit ) in CXiLHVerifyTable() argument
791 const u16 ofs_mask = (u16)( (1 << (bit - 2)) - 1 ); in CXiLHVerifyTable()
792 const u16 l_mask = (u16)( 1 << (bit - 1) ); in CXiLHVerifyTable()
793 const u16 r_mask = (u16)( 1 << (bit - 2) ); in CXiLHVerifyTable()
800 if ( treeSize > (1U << (bit + 1)) ) in CXiLHVerifyTable()
932 s8 bit = BitReader_Read( &stream ); in CXSecureUncompressLH() local
933 u32 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in CXSecureUncompressLH()
934 if ( bit < 0 ) in CXSecureUncompressLH()
939 if ( *nodep & (0x100 >> bit) ) in CXSecureUncompressLH()
964 s8 bit = BitReader_Read( &stream ); in CXSecureUncompressLH() local
965 u32 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in CXSecureUncompressLH()
967 if ( bit < 0 ) in CXSecureUncompressLH()
972 if ( *nodep & (LEAF_FLAG >> bit) ) in CXSecureUncompressLH()