Lines Matching refs:head
995 ubyte *head, *tail, t0, t1, t2; in prepImageForBacksideDuplex() local
998 for (head = imagePtr, tail = imagePtr + numBytes - 1; tail > head;) { in prepImageForBacksideDuplex()
999 t0 = *head; in prepImageForBacksideDuplex()
1000 t1 = *(head + 1); in prepImageForBacksideDuplex()
1001 t2 = *(head + 2); in prepImageForBacksideDuplex()
1003 *head = *(tail - 2); in prepImageForBacksideDuplex()
1004 *(head + 1) = *(tail - 1); in prepImageForBacksideDuplex()
1005 *(head + 2) = *(tail - 0); in prepImageForBacksideDuplex()
1010 head += 3; in prepImageForBacksideDuplex()
1014 for (head = imagePtr, tail = imagePtr + numBytes; tail > head;) { in prepImageForBacksideDuplex()
1015 t0 = *head; in prepImageForBacksideDuplex()
1016 *head = *tail; in prepImageForBacksideDuplex()
1018 head++; in prepImageForBacksideDuplex()