Lines Matching refs:GetByte
96 colTab_[base + 2] = GetByte(); in DecodeImage()
97 colTab_[base + 1] = GetByte(); in DecodeImage()
98 colTab_[base] = GetByte(); in DecodeImage()
100 GetByte(); in DecodeImage()
186 uint8 cmd = GetByte(); in DoRLEDecode()
188 uint8 pixels = GetByte(); in DoRLEDecode()
203 cmd = GetByte(); in DoRLEDecode()
214 uint8 dx = GetByte(); in DoRLEDecode()
215 uint8 dy = GetByte(); in DoRLEDecode()
231 val = GetByte(); in DoRLEDecode()
250 GetByte(); in DoRLEDecode()
282 line[2] = GetByte(); in DoStandardDecode()
283 line[1] = GetByte(); in DoStandardDecode()
284 line[0] = GetByte(); in DoStandardDecode()
293 col = GetByte(); in DoStandardDecode()
296 currVal = GetByte(); in DoStandardDecode()
303 currVal = GetByte(); in DoStandardDecode()
315 GetByte(); in DoStandardDecode()
319 GetByte(); in DoStandardDecode()
325 uint8 b1 = GetByte(); in GetInt()
326 uint8 b2 = GetByte(); in GetInt()
327 uint8 b3 = GetByte(); in GetInt()
328 uint8 b4 = GetByte(); in GetInt()
333 uint8 b1 = GetByte(); in GetShort()
334 uint8 b2 = GetByte(); in GetShort()
338 uint8 BmpDecoderHelper::GetByte() { in GetByte() function in image_codec::BmpDecoderHelper