Lines Matching refs:uchar
59 void bsBSwapBlock( uchar *start, uchar *end ) in bsBSwapBlock()
88 m_start = new uchar[m_block_size + m_unGetsize]; in Allocate()
235 uchar *current = m_current; in GetByte()
244 val = *((uchar*)current); in GetByte()
252 uchar* data = (uchar*)buffer; in GetBytes()
286 uchar *current = m_current; in GetWord()
305 uchar *current = m_current; in GetDWord()
327 uchar *current = m_current; in GetWord()
346 uchar *current = m_current; in GetDWord()
405 if( (m_current = (uchar*)(current - mask)) >= m_end ) in Get()
424 if( (uchar*)(current - mask) >= m_end ) in Show()
428 m_current = (uchar*)current; in Show()
514 if( (m_current = (uchar*)current) >= m_end ) in Get()
533 if( ((uchar*)current) >= m_end ) in Show()
535 m_current = (uchar*)current; in Show()
686 int* bsCreateSourceHuffmanTable( const uchar* src, int* dst, in bsCreateSourceHuffmanTable()
738 m_start = new uchar[m_block_size]; in Allocate()
825 *m_current++ = (uchar)val; in PutByte()
833 uchar* data = (uchar*)buffer; in PutBytes()
859 uchar *current = m_current; in PutWord()
863 current[0] = (uchar)val; in PutWord()
864 current[1] = (uchar)(val >> 8); in PutWord()
879 uchar *current = m_current; in PutDWord()
883 current[0] = (uchar)val; in PutDWord()
884 current[1] = (uchar)(val >> 8); in PutDWord()
885 current[2] = (uchar)(val >> 16); in PutDWord()
886 current[3] = (uchar)(val >> 24); in PutDWord()
910 uchar *current = m_current; in PutWord()
914 current[0] = (uchar)(val >> 8); in PutWord()
915 current[1] = (uchar)val; in PutWord()
930 uchar *current = m_current; in PutDWord()
934 current[0] = (uchar)(val >> 24); in PutDWord()
935 current[1] = (uchar)(val >> 16); in PutDWord()
936 current[2] = (uchar)(val >> 8); in PutDWord()
937 current[3] = (uchar)val; in PutDWord()