Home | History | Annotate | Download | only in opencl

Lines Matching full:ystep

58     int ystep __attribute__((aligned (4)));
121 int ystep = s->ystep;
225 if( stageIdx == SPLIT_STAGE && (ystep == 1 || ((ix | iy) & 1) == 0) )
392 int ystep = s->ystep;
394 int2 ntiles = (int2)((worksize.x/ystep + local_size_x-1)/local_size_x,
395 (worksize.y/ystep + local_size_y-1)/local_size_y);
400 int iy = mad24((tileIdx / ntiles.x), local_size_y, ly) * ystep;
401 int ix = mad24((tileIdx % ntiles.x), local_size_x, lx) * ystep;
490 int ystep = s->ystep;
557 if( stageIdx == SPLIT_STAGE && (ystep == 1 || ((ix | iy) & 1) == 0) )