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

Lines Matching full:dstps

82 	int dstps=tjPixelSize[dstpf];
83 int dststride=dstbottomup? -w*dstps:w*dstps;
87 if(dstbottomup) dstrowptr=&dstbuf[w*dstps*(h-1)];
127 col<w; col++, dstcolptr+=dstps)
150 col<w; col++, srccolptr+=srcps, dstcolptr+=dstps)
164 int retval=0, dstps, srcpf, tempc;
215 dstps=tjPixelSize[dstpf];
216 if((*buf=(unsigned char *)malloc((*w)*(*h)*dstps))==NULL)
226 if(bottomup) outbuf=&(*buf)[((*h)-row-1)*(*w)*dstps];
227 else outbuf=&(*buf)[row*(*w)*dstps];