HomeSort by relevance Sort by last modified time
    Searched full:__local (Results 26 - 50 of 71) sorted by null

12 3

  /external/opencv3/modules/core/src/opencl/
gemm.cl 70 __local T a_local[LOCAL_SIZE_ODD*LOCAL_SIZE];
71 __local WT b_local[LOCAL_SIZE_ODD*LOCAL_SIZE];
lut.cl 117 __local dstT lut_l[256 * lcn];
transpose.cl 89 __local T tile[TILE_DIM * LDS_STEP];
reduce2.cl 101 __local bufT lsmem[TILE_HEIGHT][BUF_COLS][cn];
  /external/opencv3/modules/video/src/opencl/
optical_flow_farneback.cl 78 __local float * smem,
85 __local float *row = smem + tx;
163 __local float * smem)
168 __local float *row = smem + ty * (bdx + 2*ksizeHalf);
202 __local float * smem)
208 __local volatile float *row = smem + 5 * ty * smw;
354 __local float * smem)
361 __local float *row = smem + 5 * ty * smw;
  /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/
local.py 120 __slots__ = ('__local', '__dict__', '__name__')
131 if not hasattr(self.__local, '__release_local__'):
132 return self.__local()
134 return getattr(self.__local, self.__name__)
  /external/opencv3/modules/imgproc/src/opencl/
histogram.cl 57 __local int localhist[BINS];
160 __local int sumhist[BINS];
161 __local float scale;
laplacian5.cl 107 __local WT lsmem[BLK_Y + 2 * RADIUS][BLK_X + 2 * RADIUS];
108 __local WT lsmemDy1[BLK_Y][BLK_X + 2 * RADIUS];
109 __local WT lsmemDy2[BLK_Y][BLK_X + 2 * RADIUS];
pyr_down.cl 123 vstore4(sum40, col_lcl, (__local float*) &smem[0][2]); \
126 vstore4(sum41, col_lcl, (__local float*) &smem[1][2]);
137 __local FT smem[2][LOCAL_SIZE + 4];
229 FT sum = dot(vload4(0, (__local float*) (&smem) + tid2 + (yin - y) * (LOCAL_SIZE + 4)), (float4)(co3, co2, co1, co2));
231 FT sum = dot(vload4(0, (__local double*) (&smem) + tid2 + (yin - y) * (LOCAL_SIZE + 4)), (double4)(co3, co2, co1, co2));
canny.cl 80 inline float3 sobel(int idx, __local const floatN *smem)
123 __local floatN smem[(GRP_SIZEX + 4) * (GRP_SIZEY + 4)];
144 __local float mag[(GRP_SIZEX + 2) * (GRP_SIZEY + 2)];
291 __local int mag[(GRP_SIZEX + 2) * (GRP_SIZEY + 2)];
292 __local short2 sigma[(GRP_SIZEX + 2) * (GRP_SIZEY + 2)];
394 __local ushort2 l_stack[l_stack_size];
395 __local int l_counter;
pyr_up.cl 84 __local FT s_srcPatch[LOCAL_SIZE/2 + 2][LOCAL_SIZE/2 + 2];
85 __local FT s_dstPatch[LOCAL_SIZE/2 + 2][LOCAL_SIZE];
137 __local FT s_srcPatch[LOCAL_SIZE+2][LOCAL_SIZE+2];
138 __local FT s_dstPatch[LOCAL_SIZE+2][2*LOCAL_SIZE];
filterSepRow.cl 170 __local uchar4 LDS_DAT[LSIZE1][READ_TIMES_ROW * LSIZE0 + 1];
261 sum = convertDstVec(vload4(0,(__local uchar *)&LDS_DAT[l_y][l_x]+RADIUSX+offset)) * mat_kernel[RADIUSX];
264 temp[0] = vload4(0, (__local uchar*)&LDS_DAT[l_y][l_x] + RADIUSX + offset - i);
265 temp[1] = vload4(0, (__local uchar*)&LDS_DAT[l_y][l_x] + RADIUSX + offset + i);
310 __local srcT LDS_DAT[LSIZE1][READ_TIMES_ROW * LSIZE0 + 1];
covardata.cl 91 __local float lsmem[BLK_Y+2][BLK_X+2];
130 __local float lsmem[BLK_Y+4][BLK_X+4];
201 __local float lsmem[BLK_Y+6][BLK_X+6];
hough_lines.cl 18 __local int l_index, l_offset;
19 __local int l_points[LOCAL_SIZE];
105 __local int l_accum[BUFFER_SIZE];
filterSep_singlePass.cl 114 __local WT lsmem[BLK_Y + 2 * RADIUSY][BLK_X + 2 * RADIUSX];
115 __local WT lsmemDy[BLK_Y][BLK_X + 2 * RADIUSX];
filterSepCol.cl 79 __local srcT LDS_DAT[LSIZE1 * READ_TIMES_COL][LSIZE0 + 1];
gftt.cl 59 __local float localmem_max[WGS2_ALIGNED];
morph.cl 133 __local T LDS_DAT[2 * LSIZE1 * LSIZE0];
boxFilter.cl 180 __local WT sumOfCols[LOCAL_SIZE_X];
corner.cl 118 __local float temp[6][THREADS];
  /external/opencv3/modules/core/src/
opencl_kernels_core.cpp 636 "void butterfly2(CT a0, CT a1, __local CT* smem, __global const CT* twiddles,\n"
646 "void butterfly4(CT a0, CT a1, CT a2, CT a3, __local CT* smem, __global const CT* twiddles,\n"
664 "void butterfly3(CT a0, CT a1, CT a2, __local CT* smem, __global const CT* twiddles,\n"
679 "void butterfly5(CT a0, CT a1, CT a2, CT a3, CT a4, __local CT* smem, __global const CT* twiddles,\n"
688 "__local CT* dst = smem + dst_ind;\n"
710 "void fft_radix2(__local CT* smem, __global const CT* twiddles, const int x, const int block_size, const int t)\n"
724 "void fft_radix2_B2(__local CT* smem, __global const CT* twiddles, const int x1, const int block_size, const int t)\n"
742 "void fft_radix2_B3(__local CT* smem, __global const CT* twiddles, const int x1, const int block_size, const int t)\n"
763 "void fft_radix2_B4(__local CT* smem, __global const CT* twiddles, const int x1, const int block_size, const int t)\n"
788 "void fft_radix2_B5(__local CT* smem, __global const CT* twiddles, const int x1, const int block_size, const int t)\n
    [all...]
  /external/opencv3/modules/video/
opencl_kernels_video.cpp 257 "__local float * smem,\n"
263 "__local float *row = smem + tx;\n"
327 "__local float * smem)\n"
331 "__local float *row = smem + ty * (bdx + 2*ksizeHalf);\n"
358 "__local float * smem)\n"
363 "__local volatile float *row = smem + 5 * ty * smw;\n"
481 "__local float * smem)\n"
487 "__local float *row = smem + 5 * ty * smw;\n"
821 "inline void reduce3(float val1, float val2, float val3, __local float* smem1, __local float* smem2, __local float* smem3, int tid)\n
    [all...]
  /external/ImageMagick/MagickCore/
accelerate-kernels-private.h 909 __local float4 *temp,__global float4 *tempImage)
965 __local float4 *temp,__global CLQuantum *filteredImage)
    [all...]
  /prebuilts/tools/common/m2/repository/com/sun/xsom/xsom/20140925/
xsom-20140925.jar 
  /external/opencv3/modules/imgproc/
opencl_kernels_imgproc.cpp 343 "__local WT sumOfCols[LOCAL_SIZE_X];\n"
492 "inline float3 sobel(int idx, __local const floatN *smem)\n"
529 "__local floatN smem[(GRP_SIZEX + 4) * (GRP_SIZEY + 4)];\n"
542 "__local float mag[(GRP_SIZEX + 2) * (GRP_SIZEY + 2)];\n"
616 "__local int mag[(GRP_SIZEX + 2) * (GRP_SIZEY + 2)];\n"
617 "__local short2 sigma[(GRP_SIZEX + 2) * (GRP_SIZEY + 2)];\n"
693 "__local ushort2 l_stack[l_stack_size];\n"
694 "__local int l_counter;\n"
787 "inline int calc_lut(__local int* smem, int val, int tid)\n"
798 "inline void reduce(volatile __local int* smem, int val, int tid)\n
    [all...]

Completed in 282 milliseconds

12 3