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

Lines Matching defs:inptr

385   register JSAMPROW inptr;
391 inptr = *input_buf++;
398 r = MAXJSAMPLE - GETJSAMPLE(inptr[0]);
399 g = MAXJSAMPLE - GETJSAMPLE(inptr[1]);
400 b = MAXJSAMPLE - GETJSAMPLE(inptr[2]);
402 outptr3[col] = inptr[3]; /* don't need GETJSAMPLE here */
403 inptr += 4;
437 register JSAMPROW inptr;
444 inptr = *input_buf++;
448 outptr[col] = inptr[0]; /* don't need GETJSAMPLE() here */
449 inptr += instride;
466 register JSAMPROW inptr;
475 inptr = *input_buf++;
481 outptr0[col] = *inptr++;
482 outptr1[col] = *inptr++;
483 outptr2[col] = *inptr++;
488 inptr = *input_buf++;
495 outptr0[col] = *inptr++;
496 outptr1[col] = *inptr++;
497 outptr2[col] = *inptr++;
498 outptr3[col] = *inptr++;
505 inptr = *input_buf;
508 outptr[col] = inptr[ci]; /* don't need GETJSAMPLE() here */
509 inptr += nc;