Lines Matching refs:head
994 ubyte *head, *tail, t0, t1, t2; in prepImageForBacksideDuplex() local
997 for (head = imagePtr, tail = imagePtr + numBytes - 1; tail > head;) { in prepImageForBacksideDuplex()
998 t0 = *head; in prepImageForBacksideDuplex()
999 t1 = *(head + 1); in prepImageForBacksideDuplex()
1000 t2 = *(head + 2); in prepImageForBacksideDuplex()
1002 *head = *(tail - 2); in prepImageForBacksideDuplex()
1003 *(head + 1) = *(tail - 1); in prepImageForBacksideDuplex()
1004 *(head + 2) = *(tail - 0); in prepImageForBacksideDuplex()
1009 head += 3; in prepImageForBacksideDuplex()
1013 for (head = imagePtr, tail = imagePtr + numBytes; tail > head;) { in prepImageForBacksideDuplex()
1014 t0 = *head; in prepImageForBacksideDuplex()
1015 *head = *tail; in prepImageForBacksideDuplex()
1017 head++; in prepImageForBacksideDuplex()