Home
last modified time | relevance | path

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

/external/opencv3/modules/cudalegacy/test/
DTestHypothesesGrow.cpp92 NCVVectorAlloc<NcvRect32u> h_vecDst(*this->allocatorCPU.get(), this->maxLenDst); in process() local
93 ncvAssertReturn(h_vecDst.isMemAllocated(), false); in process()
103 memset(h_vecDst.ptr(), 0, h_vecDst.length() * sizeof(NcvRect32u)); in process()
104 …NCVVectorReuse<Ncv32u> h_vecDst_as32u(h_vecDst.getSegment(), lenDst * sizeof(NcvRect32u) / sizeof(… in process()
107 memcpy(h_vecDst_d.ptr(), h_vecDst.ptr(), h_vecDst.length() * sizeof(NcvRect32u)); in process()
112 ncvStat = h_vecDst.copySolid(d_vecDst, 0); in process()
130 h_vecDst, h_outElemNum_h, this->maxLenDst, in process()
145 if (memcmp(h_vecDst.ptr(), h_vecDst_d.ptr(), this->maxLenDst * sizeof(NcvRect32u))) in process()
DTestCompact.cpp82 NCVVectorAlloc<Ncv32u> h_vecDst(*this->allocatorCPU.get(), this->length); in process() local
83 ncvAssertReturn(h_vecDst.isMemAllocated(), false); in process()
123 …ncvStat = nppsStCompact_32u_host(h_vecSrc.ptr(), this->length, h_vecDst.ptr(), &h_outElemNum_h, th… in process()
139 if (h_vecDst.ptr()[i] != h_vecDst_d.ptr()[i]) in process()