Home | History | Annotate | Download | only in jpeg

Lines Matching refs:outptr

105   register char * outptr;
109 outptr = dest->iobuffer;
111 outptr[0] = (char) GETJSAMPLE(inptr[2]); /* RGB to BGR order */
112 outptr[1] = (char) GETJSAMPLE(inptr[1]);
113 outptr[2] = (char) GETJSAMPLE(inptr[0]);
114 inptr += 3, outptr += 3;
126 register char * outptr;
130 outptr = dest->iobuffer;
132 *outptr++ = (char) GETJSAMPLE(*inptr++);
149 register char * outptr;
154 outptr = dest->iobuffer;
156 *outptr++ = (char) GETJSAMPLE(color_map0[GETJSAMPLE(*inptr++)]);