Searched refs:bit (Results 1 – 5 of 5) sorted by relevance
| /RvlSDK-3.3/build/libraries/cx/src/ |
| D | CXSecureUncompression.c | 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() [all …]
|
| D | CXUncompression.c | 442 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()
|
| D | CXStreamingUncompression.c | 440 extern BOOL CXiVerifyHuffmanTable_( const void* pTable, u8 bit ); 679 extern BOOL CXiLHVerifyTable( const void* pTable, u8 bit ); 855 u8 bit; in CXReadUncompLH() local 863 bit = (u8)( val & 1 ); in CXReadUncompLH() 864 offset = (((*nodep & 0x7F) + 1U) << 1) + bit; in CXReadUncompLH() 866 if ( *nodep & (0x100 >> bit) ) in CXReadUncompLH() 901 u8 bit; in CXReadUncompLH() local 910 bit = (u8)( val & 1 ); in CXReadUncompLH() 911 offset = (((*nodep & OFFSET_MASK) + 1U) << 1) + bit; in CXReadUncompLH() 913 if ( *nodep & (LEAF_FLAG >> bit) ) in CXReadUncompLH()
|
| /RvlSDK-3.3/build/tools/TexConv/sample/ |
| D | sample.tcs | 48 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.3/build/demos/kpaddemo/src/ |
| D | kfont.c | 329 u32 bit = 1 ; in draw_kfont_bit() local 337 if ( (bit & 0x01010100) != 0 ) { in draw_kfont_bit() 341 if ( (val & bit) != 0 ) { in draw_kfont_bit() 347 bit <<= 1 ; in draw_kfont_bit()
|