Lines Matching refs:uchar
125 uchar buffer[256*3]; in ReadHeader()
173 bool GrFmtSunRasterReader::ReadData( uchar* data, int step, int color ) in ReadData()
176 uchar buffer[buffer_size]; in ReadData()
177 uchar bgr_buffer[buffer_size]; in ReadData()
178 uchar gray_palette[256]; in ReadData()
180 uchar* src = buffer; in ReadData()
181 uchar* bgr = bgr_buffer; in ReadData()
191 src = new uchar[src_pitch+32]; in ReadData()
194 bgr = new uchar[m_width*3 + 32]; in ReadData()
221 uchar* line_end = src + (m_width*m_bpp + 7)/8; in ReadData()
222 uchar* tsrc = src; in ReadData()
238 tsrc[len1] = (uchar)code; in ReadData()
290 uchar* line_end = data + width3; in ReadData()
297 uchar* tsrc = src; in ReadData()
307 *tsrc++ = (uchar)code; in ReadData()
414 bool GrFmtSunRasterWriter::WriteImage( const uchar* data, int step, in WriteImage()