RADIUS 930 3rdparty/libwebp/enc/picture.c const int y_0 = (y - RADIUS < 0) ? 0 : y - RADIUS; RADIUS 931 3rdparty/libwebp/enc/picture.c const int y_1 = (y + RADIUS + 1 >= h) ? h : y + RADIUS + 1; RADIUS 933 3rdparty/libwebp/enc/picture.c const int x_0 = (x - RADIUS < 0) ? 0 : x - RADIUS; RADIUS 934 3rdparty/libwebp/enc/picture.c const int x_1 = (x + RADIUS + 1 >= w) ? w : x + RADIUS + 1; RADIUS 107 modules/imgproc/src/opencl/laplacian5.cl __local WT lsmem[BLK_Y + 2 * RADIUS][BLK_X + 2 * RADIUS]; RADIUS 108 modules/imgproc/src/opencl/laplacian5.cl __local WT lsmemDy1[BLK_Y][BLK_X + 2 * RADIUS]; RADIUS 109 modules/imgproc/src/opencl/laplacian5.cl __local WT lsmemDy2[BLK_Y][BLK_X + 2 * RADIUS]; RADIUS 116 modules/imgproc/src/opencl/laplacian5.cl int srcX = x + srcOffsetX - RADIUS; RADIUS 121 modules/imgproc/src/opencl/laplacian5.cl int yb = clocY + srcOffsetY - RADIUS; RADIUS 135 modules/imgproc/src/opencl/laplacian5.cl while(clocX < BLK_X+(RADIUS*2)); RADIUS 139 modules/imgproc/src/opencl/laplacian5.cl while (clocY < BLK_Y+(RADIUS*2)); RADIUS 153 modules/imgproc/src/opencl/laplacian5.cl for (i=0; i<=2*RADIUS; i++) RADIUS 162 modules/imgproc/src/opencl/laplacian5.cl while(clocX < BLK_X+(RADIUS*2)); RADIUS 169 modules/imgproc/src/opencl/laplacian5.cl for (i=0; i<=2*RADIUS; i++) RADIUS 179 modules/imgproc/src/opencl/laplacian5.cl for (int i = liy * BLK_X + lix; i < (RADIUS*2) * (BLK_X+(RADIUS*2)); i += BLK_X * BLK_Y) RADIUS 181 modules/imgproc/src/opencl/laplacian5.cl int clocX = i % (BLK_X+(RADIUS*2)); RADIUS 182 modules/imgproc/src/opencl/laplacian5.cl int clocY = i / (BLK_X+(RADIUS*2)); RADIUS 187 modules/imgproc/src/opencl/laplacian5.cl int yb = y + liy + BLK_Y + srcOffsetY + RADIUS; RADIUS 191 modules/imgproc/src/opencl/laplacian5.cl int cSrcX = x + srcOffsetX - RADIUS; RADIUS 196 modules/imgproc/src/opencl/laplacian5.cl lsmem[liy + 2*RADIUS][clocX] = ELEM(xb, yb, (width), (height), 0 ); RADIUS 201 modules/imgproc/src/opencl/laplacian5.cl while(clocX < BLK_X+(RADIUS*2));