Lines Matching refs:uchar
36 m_start = new uchar[data_size]; in Allocate()
73 *m_current++ = (uchar)val; in PutByte()
79 uchar* data = (uchar*)buffer; in PutBytes()
103 uchar *current = m_current; in PutWord()
107 current[0] = (uchar)val; in PutWord()
108 current[1] = (uchar)(val >> 8); in PutWord()
121 uchar *current = m_current; in PutDWord()
125 current[0] = (uchar)val; in PutDWord()
126 current[1] = (uchar)(val >> 8); in PutDWord()
127 current[2] = (uchar)(val >> 16); in PutDWord()
128 current[3] = (uchar)(val >> 24); in PutDWord()
141 uchar* WLNonFileByteStream::GetByte() in GetByte()