Home
last modified time | relevance | path

Searched refs:xstep (Results 1 – 9 of 9) sorted by relevance

/external/libpng/contrib/examples/
Dpngpixel.c247 png_uint_32 ystart, xstart, ystep, xstep; in main() local
268 xstep = PNG_PASS_COL_OFFSET(pass); in main()
275 ystep = xstep = 1; in main()
303 px < width; px += xstep, ++ppx) if (x == px) in main()
/external/mesa3d/src/mesa/swrast/
Ds_linetemp.h77 GLint xstep, ystep; in NAME() local
177 xstep = -1; in NAME()
186 xstep = 1; in NAME()
318 x0 += xstep; in NAME()
371 x0 += xstep; in NAME()
/external/libcups/filter/
Drastertoepson.c81 unsigned type, unsigned xstep, unsigned ystep);
414 unsigned xstep, /* I - X resolution */ in CompressData() argument
587 putchar((int)xstep); in CompressData()
745 unsigned xstep, ystep; /* X & Y resolutions */ in OutputLine() local
751 xstep = 3600 / header->HWResolution[0]; in OutputLine()
778 CompressData(Planes[plane], bytes, plane, header->cupsCompression, xstep, ystep); in OutputLine()
/external/python/cpython2/Modules/
Dimageop.c125 int ix, iy, xstep, ystep; in imageop_crop() local
139 xstep = (newx1 < newx2)? 1 : -1; in imageop_crop()
152 newx2 += xstep; in imageop_crop()
154 for ( ix = newx1; ix != newx2; ix+=xstep ) { in imageop_crop()
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_setup.c1097 int xstep, ystep; in sp_setup_line() local
1123 xstep = -1; in sp_setup_line()
1126 xstep = 1; in sp_setup_line()
1173 x0 += xstep; in sp_setup_line()
1199 x0 += xstep; in sp_setup_line()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_setup_tri.c865 int64_t xstep[MAX_PLANES]; in lp_setup_bin_triangle() local
884 xstep[i] = -(((int64_t)plane[i].dcdx) << TILE_ORDER); in lp_setup_bin_triangle()
948 cx[i] += xstep[i]; in lp_setup_bin_triangle()
/external/llvm/docs/tutorial/
DLangImpl06.rst575 def mandelhelp(xmin xmax xstep ymin ymax ystep)
577 (for x = xmin, x < xmax, xstep in
DOCamlLangImpl6.rst525 def mandelhelp(xmin xmax xstep ymin ymax ystep)
527 (for x = xmin, x < xmax, xstep in
/external/libpng/contrib/libtests/
Dpngvalid.c4034 png_uint_32 xin, xout, xstep; in interlace_row() local
4044 xstep = 1U<<PNG_PASS_COL_SHIFT(pass); in interlace_row()
4046 for (xout=0; xin<w; xin+=xstep) in interlace_row()
4063 png_uint_32 xin, xout, xstep; in deinterlace_row() local
4066 xstep = 1U<<PNG_PASS_COL_SHIFT(pass); in deinterlace_row()
4068 for (xin=0; xout<w; xout+=xstep) in deinterlace_row()