Home | History | Annotate | Download | only in libjpeg-turbo

Lines Matching full:inptr

386   register JSAMPROW inptr;
392 inptr = *input_buf++;
399 r = MAXJSAMPLE - GETJSAMPLE(inptr[0]);
400 g = MAXJSAMPLE - GETJSAMPLE(inptr[1]);
401 b = MAXJSAMPLE - GETJSAMPLE(inptr[2]);
403 outptr3[col] = inptr[3]; /* don't need GETJSAMPLE here */
404 inptr += 4;
438 register JSAMPROW inptr;
445 inptr = *input_buf++;
449 outptr[col] = inptr[0]; /* don't need GETJSAMPLE() here */
450 inptr += instride;
467 register JSAMPROW inptr;
476 inptr = *input_buf++;
482 outptr0[col] = *inptr++;
483 outptr1[col] = *inptr++;
484 outptr2[col] = *inptr++;
489 inptr = *input_buf++;
496 outptr0[col] = *inptr++;
497 outptr1[col] = *inptr++;
498 outptr2[col] = *inptr++;
499 outptr3[col] = *inptr++;
506 inptr = *input_buf;
509 outptr[col] = inptr[ci]; /* don't need GETJSAMPLE() here */
510 inptr += nc;