Lines Matching refs:in
168 const UINT8 *in; in bmp_to_blt() local
176 in = pixmap; in bmp_to_blt()
182 for (UINTN x = 0; x < dib->x; x++, in++, out++) { in bmp_to_blt()
186 out->Red = map[((*in) >> (7 - i)) & 1].red; in bmp_to_blt()
187 out->Green = map[((*in) >> (7 - i)) & 1].green; in bmp_to_blt()
188 out->Blue = map[((*in) >> (7 - i)) & 1].blue; in bmp_to_blt()
200 i = (*in) >> 4; in bmp_to_blt()
207 i = (*in) & 0x0f; in bmp_to_blt()
216 out->Red = map[*in].red; in bmp_to_blt()
217 out->Green = map[*in].green; in bmp_to_blt()
218 out->Blue = map[*in].blue; in bmp_to_blt()
222 UINT16 i = *(UINT16 *) in; in bmp_to_blt()
227 in += 1; in bmp_to_blt()
232 out->Red = in[2]; in bmp_to_blt()
233 out->Green = in[1]; in bmp_to_blt()
234 out->Blue = in[0]; in bmp_to_blt()
235 in += 2; in bmp_to_blt()
239 UINT32 i = *(UINT32 *) in; in bmp_to_blt()
243 in += 3; in bmp_to_blt()
250 row_size = in - pixmap; in bmp_to_blt()
251 in += ((row_size + 3) & ~3) - row_size; in bmp_to_blt()