Home | History | Annotate | Download | only in test

Lines Matching refs:line_data

261 	uint8_t *line_data = (uint8_t *)data + stride * i;
268 line_data[j] =
269 ((line_data[j] & 0x80) >> 7) |
270 ((line_data[j] & 0x40) >> 5) |
271 ((line_data[j] & 0x20) >> 3) |
272 ((line_data[j] & 0x10) >> 1) |
273 ((line_data[j] & 0x08) << 1) |
274 ((line_data[j] & 0x04) << 3) |
275 ((line_data[j] & 0x02) << 5) |
276 ((line_data[j] & 0x01) << 7);
282 line_data[j] = (line_data[j] >> 4) | (line_data[j] << 4);
288 char t1 = line_data[j + 0];
289 char t2 = line_data[j + 1];
291 line_data[j + 1] = t1;
292 line_data[j + 0] = t2;
298 char t1 = line_data[j + 0];
299 char t2 = line_data[j + 1];
300 char t3 = line_data[j + 2];
302 line_data[j + 2] = t1;
303 line_data[j + 1] = t2;
304 line_data[j + 0] = t3;
310 char t1 = line_data[j + 0];
311 char t2 = line_data[j + 1];
312 char t3 = line_data[j + 2];
313 char t4 = line_data[j + 3];
315 line_data[j + 3] = t1;
316 line_data[j + 2] = t2;
317 line_data[j + 1] = t3;
318 line_data[j + 0] = t4;