Lines Matching refs:numDetsToCopy
1507 Ncv32u numDetsToCopy = numPixelMaskDetections; in ncvGrowDetectionsVector_device() local
1509 if (numDetsToCopy == 0) in ncvGrowDetectionsVector_device()
1517 numDetsToCopy = totalMaxDetections - totalDetections; in ncvGrowDetectionsVector_device()
1521 dim3 grid((numDetsToCopy + NUM_GROW_THREADS - 1) / NUM_GROW_THREADS); in ncvGrowDetectionsVector_device()
1527 growDetectionsKernel<<<grid, block, 0, cuStream>>>(pixelMask.ptr(), numDetsToCopy, in ncvGrowDetectionsVector_device()
1532 totalDetections += numDetsToCopy; in ncvGrowDetectionsVector_device()
2087 Ncv32u numDetsToCopy = numPixelMaskDetections; in ncvGrowDetectionsVector_host() local
2089 if (numDetsToCopy == 0) in ncvGrowDetectionsVector_host()
2097 numDetsToCopy = totalMaxDetections - totalDetections; in ncvGrowDetectionsVector_host()
2100 for (Ncv32u i=0; i<numDetsToCopy; i++) in ncvGrowDetectionsVector_host()
2105 totalDetections += numDetsToCopy; in ncvGrowDetectionsVector_host()