Home
last modified time | relevance | path

Searched refs:ystep (Results 1 – 16 of 16) sorted by relevance

/external/libgav1/libgav1/src/dsp/arm/
Dintrapred_directional_neon.cc288 const int base_left_y, const int ystep, in DirectionalZone3_WxH() argument
296 ((ystep * width) >> scale_bits) + in DirectionalZone3_WxH()
316 const int index_1 = base_left_y + ystep; in DirectionalZone3_WxH()
322 const int index_2 = base_left_y + ystep * 2; in DirectionalZone3_WxH()
328 const int index_3 = base_left_y + ystep * 3; in DirectionalZone3_WxH()
334 const int index_4 = base_left_y + ystep * 4; in DirectionalZone3_WxH()
340 const int index_5 = base_left_y + ystep * 5; in DirectionalZone3_WxH()
346 const int index_6 = base_left_y + ystep * 6; in DirectionalZone3_WxH()
352 const int index_7 = base_left_y + ystep * 7; in DirectionalZone3_WxH()
530 const int ystep, const bool upsampled_top, in DirectionalZone2_4xH() argument
[all …]
/external/libgav1/libgav1/src/dsp/
Dintrapred_directional.cc103 const int xstep, const int ystep, in DirectionalIntraPredictorZone2_C() argument
112 assert(ystep > 0); in DirectionalIntraPredictorZone2_C()
124 int left_y = (y << 6) - ystep; in DirectionalIntraPredictorZone2_C()
140 left_y -= ystep; in DirectionalIntraPredictorZone2_C()
152 const int ystep, in DirectionalIntraPredictorZone3_C() argument
157 assert(ystep > 0); in DirectionalIntraPredictorZone3_C()
164 ((ystep * width) >> scale_bits) + in DirectionalIntraPredictorZone3_C()
167 int left_y = ystep; in DirectionalIntraPredictorZone3_C()
183 left_y += ystep; in DirectionalIntraPredictorZone3_C()
Dintrapred_filter.cc60 int ystep = 1; in FilterIntraPredictor_C() local
76 const int yoffset = (i >> 2) * ystep; in FilterIntraPredictor_C()
101 ystep = -ystep; in FilterIntraPredictor_C()
Ddsp.h231 int height, int xstep, int ystep, bool upsampled_top, bool upsampled_left);
245 int height, int ystep,
/external/python/cpython2/Modules/
Dimgfile.c96 int yfirst, ylast, ystep; in imgfile_read() local
144 ystep = -1; in imgfile_read()
148 ystep = 1; in imgfile_read()
150 for ( y=yfirst; y != ylast && !error_called; y += ystep ) { in imgfile_read()
258 int yfirst, ylast, ystep; in imgfile_readscaled() local
341 ystep = -1; in imgfile_readscaled()
345 ystep = 1; in imgfile_readscaled()
347 for ( y=yfirst; y != ylast && !error_called; y += ystep ) { in imgfile_readscaled()
404 int yfirst, ylast, ystep; in imgfile_write() local
445 ystep = -1; in imgfile_write()
[all …]
Dimageop.c125 int ix, iy, xstep, ystep; in imageop_crop() local
140 ystep = (newy1 < newy2)? 1 : -1; in imageop_crop()
151 newy2 += ystep; in imageop_crop()
153 for( iy = newy1; iy != newy2; iy+=ystep ) { in imageop_crop()
/external/libgav1/libgav1/src/dsp/x86/
Dintrapred_directional_sse4.cc383 const int base_left_y, const int ystep) { in DirectionalZone3_4x4() argument
393 for (int x = 0, left_y = base_left_y; x < 4; x++, left_y += ystep) { in DirectionalZone3_4x4()
427 const int base_left_y, const int ystep) { in DirectionalZone3_8xH() argument
438 for (int x = 0, left_y = base_left_y; x < 8; x++, left_y += ystep) { in DirectionalZone3_8xH()
465 const int ystep, in DirectionalIntraPredictorZone3_SSE4_1() argument
473 int left_y = ystep; in DirectionalIntraPredictorZone3_SSE4_1()
480 dst_x, stride, left_ptr + (y << upsample_shift), left_y, ystep); in DirectionalIntraPredictorZone3_SSE4_1()
484 left_y += ystep << 2; in DirectionalIntraPredictorZone3_SSE4_1()
488 int left_y = ystep; in DirectionalIntraPredictorZone3_SSE4_1()
495 ystep); in DirectionalIntraPredictorZone3_SSE4_1()
[all …]
/external/libpng/contrib/examples/
Dpngpixel.c247 png_uint_32 ystart, xstart, ystep, xstep; in main() local
269 ystep = PNG_PASS_ROW_OFFSET(pass); in main()
275 ystep = xstep = 1; in main()
282 for (py = ystart; py < height; py += ystep) in main()
/external/libcups/filter/
Drastertoepson.c76 unsigned type, unsigned xstep, unsigned ystep);
410 unsigned ystep) /* I - Y resolution */ in CompressData() argument
433 if (ystep == 5) in CompressData()
581 putchar((int)ystep); in CompressData()
740 unsigned xstep, ystep; /* X & Y resolutions */ in OutputLine() local
747 ystep = 3600 / header->HWResolution[1]; in OutputLine()
773 CompressData(Planes[plane], bytes, plane, header->cupsCompression, xstep, ystep); in OutputLine()
/external/mesa3d/src/mesa/swrast/
Ds_linetemp.h77 GLint xstep, ystep; in NAME() local
197 ystep = -1; in NAME()
206 ystep = 1; in NAME()
331 y0 += ystep; in NAME()
358 y0 += ystep; in NAME()
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_setup.c1088 int xstep, ystep; in sp_setup_line() local
1123 ystep = -1; in sp_setup_line()
1126 ystep = 1; in sp_setup_line()
1171 y0 += ystep; in sp_setup_line()
1185 y0 += ystep; in sp_setup_line()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_setup_tri.c891 int64_t ystep[MAX_PLANES]; in lp_setup_bin_triangle() local
910 ystep[i] = ((int64_t)plane[i].dcdy) << TILE_ORDER; in lp_setup_bin_triangle()
979 c[i] += ystep[i]; in lp_setup_bin_triangle()
/external/llvm/docs/tutorial/
DLangImpl06.rst575 def mandelhelp(xmin xmax xstep ymin ymax ystep)
576 for y = ymin, y < ymax, ystep in (
DOCamlLangImpl6.rst525 def mandelhelp(xmin xmax xstep ymin ymax ystep)
526 for y = ymin, y < ymax, ystep in (
/external/llvm-project/llvm/docs/tutorial/MyFirstLanguageFrontend/
DLangImpl06.rst575 def mandelhelp(xmin xmax xstep ymin ymax ystep)
576 for y = ymin, y < ymax, ystep in (
/external/llvm-project/llvm/docs/tutorial/
DOCamlLangImpl6.rst525 def mandelhelp(xmin xmax xstep ymin ymax ystep)
526 for y = ymin, y < ymax, ystep in (