loc              1646 modules/core/src/mathfuncs.cpp         int i, loc = 0;
loc              1662 modules/core/src/mathfuncs.cpp             for( ; badPt.x < 0 && size.height--; loc += size.width, isrc += step )
loc              1671 modules/core/src/mathfuncs.cpp                         badPt = Point((loc + i) % src.cols, (loc + i) / src.cols);
loc              1691 modules/core/src/mathfuncs.cpp             for( ; badPt.x < 0 && size.height--; loc += size.width, isrc += step )
loc              1700 modules/core/src/mathfuncs.cpp                         badPt = Point((loc + i) % src.cols, (loc + i) / src.cols);
loc               949 modules/core/test/test_mat.cpp             size_t loc = 0;
loc               955 modules/core/test/test_mat.cpp                     if(mElem[loc + li] != mvElem[li])
loc               957 modules/core/test/test_mat.cpp                 loc += mvChannel;
loc               959 modules/core/test/test_mat.cpp             CV_Assert(loc == (size_t)mChannels);
loc               606 modules/cudaarithm/include/opencv2/cudaarithm.hpp CV_EXPORTS void findMinMaxLoc(InputArray src, OutputArray minMaxVals, OutputArray loc,
loc               513 modules/cudaarithm/test/test_reductions.cpp     void expectEqualImpl(const cv::Mat& src, cv::Point loc_gold, cv::Point loc)
loc               515 modules/cudaarithm/test/test_reductions.cpp         EXPECT_EQ(src.at<T>(loc_gold.y, loc_gold.x), src.at<T>(loc.y, loc.x));
loc               518 modules/cudaarithm/test/test_reductions.cpp     void expectEqual(const cv::Mat& src, cv::Point loc_gold, cv::Point loc)
loc               520 modules/cudaarithm/test/test_reductions.cpp         typedef void (*func_t)(const cv::Mat& src, cv::Point loc_gold, cv::Point loc);
loc               533 modules/cudaarithm/test/test_reductions.cpp         funcs[src.depth()](src, loc_gold, loc);
loc                59 modules/cudafeatures2d/src/fast.cpp         int nonmaxSuppression_gpu(const short2* kpLoc, int count, PtrStepSzi score, short2* loc, float* response, cudaStream_t stream);
loc                58 modules/cudafeatures2d/src/orb.cpp         int cull_gpu(int* loc, float* response, int size, int n_points);
loc                60 modules/cudafeatures2d/src/orb.cpp         void HarrisResponses_gpu(PtrStepSzb img, const short2* loc, float* response, const int npoints, int blockSize, float harris_k, cudaStream_t stream);
loc                64 modules/cudafeatures2d/src/orb.cpp         void IC_Angle_gpu(PtrStepSzb image, const short2* loc, float* angle, int npoints, int half_k, cudaStream_t stream);
loc                66 modules/cudafeatures2d/src/orb.cpp         void computeOrbDescriptor_gpu(PtrStepb img, const short2* loc, const float* angle, const int npoints,
loc                69 modules/cudafeatures2d/src/orb.cpp         void mergeLocation_gpu(const short2* loc, float* x, float* y, int npoints, float scale, cudaStream_t stream);
loc                84 modules/flann/include/opencv2/flann/allocator.h     void*   loc;      /* Current location in block to next allocate memory. */
loc               159 modules/flann/include/opencv2/flann/allocator.h             loc = ((char*)m + sizeof(void*) + shift);
loc               161 modules/flann/include/opencv2/flann/allocator.h         void* rloc = loc;
loc               162 modules/flann/include/opencv2/flann/allocator.h         loc = (char*)loc + size;
loc               651 modules/imgproc/src/subdivision2d.cpp     int loc = locate( pt, edge, vertex );
loc               653 modules/imgproc/src/subdivision2d.cpp     if( loc != PTLOC_ON_EDGE && loc != PTLOC_INSIDE )
loc              1811 modules/ts/src/ts_func.cpp bool cmpUlps(const Mat& src1, const Mat& src2, int imaxDiff, double* _realmaxdiff, vector<int>* loc)
loc              1860 modules/ts/src/ts_func.cpp     if(idx > 0 && loc)
loc              1861 modules/ts/src/ts_func.cpp         setpos(src1, *loc, idx);
loc              2890 modules/ts/src/ts_func.cpp     const vector<int>* loc;
loc              2895 modules/ts/src/ts_func.cpp     CV_Assert( !m.loc || ((int)m.loc->size() == m.m->dims && m.m->dims <= 2) );
loc              2896 modules/ts/src/ts_func.cpp     if( !m.loc )
loc              2903 modules/ts/src/ts_func.cpp             writeElems(out, m.m->ptr(i), width, depth, i == (*m.loc)[0] ? (*m.loc)[1] : -1);
loc              2931 modules/ts/src/ts_func.cpp     vector<int> loc;
loc              2937 modules/ts/src/ts_func.cpp         loc = loc0;
loc              2938 modules/ts/src/ts_func.cpp         m1part = Mat(1, 1, m[0].depth(), m[0].ptr(&loc[0]));
loc              2939 modules/ts/src/ts_func.cpp         m2part = Mat(1, 1, m[1].depth(), m[1].ptr(&loc[0]));
loc              2943 modules/ts/src/ts_func.cpp         m1part = getSubArray(m[0], border, loc0, loc);
loc              2944 modules/ts/src/ts_func.cpp         m2part = getSubArray(m[1], border, loc0, loc);
loc              2951 modules/ts/src/ts_func.cpp     << "'" << expr1 << "': " << MatPart(m1part, border > 0 ? &loc : 0) << ".\n\n"
loc              2952 modules/ts/src/ts_func.cpp     << "'" << expr2 << "': " << MatPart(m2part, border > 0 ? &loc : 0) << ".\n";
loc               441 modules/ts/src/ts_perf.cpp         int loc[10] = {0};
loc               442 modules/ts/src/ts_perf.cpp         cv::minMaxIdx(maximum, 0, max_allowed, 0, loc, mask);
loc               443 modules/ts/src/ts_perf.cpp         *max_violation = diff64f.at<double>(loc[0], loc[1]);
loc               342 samples/cpp/train_HOG.cpp         vector< Rect >::const_iterator loc = locations.begin();
loc               344 samples/cpp/train_HOG.cpp         for( ; loc != end ; ++loc )
loc               346 samples/cpp/train_HOG.cpp             rectangle( img, *loc, color, 2 );