Home
last modified time | relevance | path

Searched refs:shist (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/cudaimgproc/src/cuda/
Dhist.cu57 __shared__ int shist[256]; in histogram256Kernel() local
62 shist[tid] = 0; in histogram256Kernel()
74 Emulation::smem::atomicAdd(&shist[(data >> 0) & 0xFFU], 1); in histogram256Kernel()
75 Emulation::smem::atomicAdd(&shist[(data >> 8) & 0xFFU], 1); in histogram256Kernel()
76 Emulation::smem::atomicAdd(&shist[(data >> 16) & 0xFFU], 1); in histogram256Kernel()
77 Emulation::smem::atomicAdd(&shist[(data >> 24) & 0xFFU], 1); in histogram256Kernel()
85 Emulation::smem::atomicAdd(&shist[data], 1); in histogram256Kernel()
92 const int histVal = shist[tid]; in histogram256Kernel()
114 …__device__ __forceinline__ void histEvenInc(int* shist, uint data, int binSize, int lowerLevel, in… in histEvenInc() argument
119 Emulation::smem::atomicAdd(shist + ind, 1); in histEvenInc()
[all …]
/external/opencv3/modules/imgproc/src/
Dhistogram.cpp53 calcHistLookupTables_8u( const Mat& hist, const SparseMat& shist, in calcHistLookupTables_8u() argument
68 int sz = !issparse ? hist.size[i] : shist.size(i); in calcHistLookupTables_8u()
89 int idx = -1, sz = !issparse ? hist.size[i] : shist.size(i); in calcHistLookupTables_8u()