Home
last modified time | relevance | path

Searched refs:bit (Results 1 – 6 of 6) sorted by relevance

/RvlSDK-3.2/build/libraries/cx/src/
DCXSecureUncompression.c344 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()
[all …]
DCXUncompression.c442 u8 bit; in BitReader_Read() local
448 bit = (u8)( (context->stream >> (context->stream_len - 1)) & 0x1 ); in BitReader_Read()
450 return bit; in BitReader_Read()
513 u8 bit = BitReader_Read( &stream ); in CXUncompressLH() local
514 u32 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in CXUncompressLH()
516 if ( *nodep & (0x100 >> bit) ) in CXUncompressLH()
541 u8 bit = BitReader_Read( &stream ); in CXUncompressLH() local
542 u32 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in CXUncompressLH()
544 if ( *nodep & (LEAF_FLAG >> bit) ) in CXUncompressLH()
DCXStreamingUncompression.c435 extern BOOL CXiVerifyHuffmanTable_( const void* pTable, u8 bit );
674 extern BOOL CXiLHVerifyTable( const void* pTable, u8 bit );
840 u8 bit; in CXReadUncompLH() local
848 bit = (u8)( val & 1 ); in CXReadUncompLH()
849 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in CXReadUncompLH()
851 if ( *nodep & (0x100 >> bit) ) in CXReadUncompLH()
886 u8 bit; in CXReadUncompLH() local
895 bit = (u8)( val & 1 ); in CXReadUncompLH()
896 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in CXReadUncompLH()
898 if ( *nodep & (LEAF_FLAG >> bit) ) in CXReadUncompLH()
/RvlSDK-3.2/build/tools/TexConv/sample/
Dsample.tcs48 file 0 = dolphin_32.tga ; this is a 32-bit rgba image
49 file 1 = pikachu_8.tga ; this is an 8-bit color-indexed image with 256 entry 24-bit
50 file 2 = car_24.tga ; this is a 24-bit rgb image
87 image 2 = 0, 0, CMPR, 0, 7, 0 ; compressed format with source alpha reduced to 1-bit alpha.
/RvlSDK-3.2/build/demos/kpadOlddemo/src/
Dkfont.c320 u32 bit = 1 ; in draw_kfont_bit() local
328 if ( (bit & 0x01010100) != 0 ) { in draw_kfont_bit()
332 if ( (val & bit) != 0 ) { in draw_kfont_bit()
338 bit <<= 1 ; in draw_kfont_bit()
/RvlSDK-3.2/build/demos/kpaddemo/src/
Dkfont.c320 u32 bit = 1 ; in draw_kfont_bit() local
328 if ( (bit & 0x01010100) != 0 ) { in draw_kfont_bit()
332 if ( (val & bit) != 0 ) { in draw_kfont_bit()
338 bit <<= 1 ; in draw_kfont_bit()