Lines Matching defs:in
7 * This program is distributed in the hope that it will be useful, but
166 UINT8 *in;
170 in = pixmap;
177 for (x = 0; x < dib->x; x++, in++, out++) {
183 out->Red = map[((*in) >> (7 - i)) & 1].red;
184 out->Green = map[((*in) >> (7 - i)) & 1].green;
185 out->Blue = map[((*in) >> (7 - i)) & 1].blue;
197 i = (*in) >> 4;
204 i = (*in) & 0x0f;
213 out->Red = map[*in].red;
214 out->Green = map[*in].green;
215 out->Blue = map[*in].blue;
219 UINT16 i = *(UINT16 *) in;
224 in += 1;
229 out->Red = in[2];
230 out->Green = in[1];
231 out->Blue = in[0];
232 in += 2;
236 UINT32 i = *(UINT32 *) in;
240 in += 3;
247 row_size = in - pixmap;
248 in += ((row_size + 3) & ~3) - row_size;