seed 30 3rdparty/include/ffmpeg_/libavutil/lfg.h void av_lfg_init(AVLFG *c, unsigned int seed); seed 27 3rdparty/include/ffmpeg_/libavutil/murmur3.h void av_murmur3_init_seeded(struct AVMurMur3 *c, uint64_t seed); seed 355 3rdparty/libwebp/enc/histogram.c static uint32_t MyRand(uint32_t *seed) { seed 356 3rdparty/libwebp/enc/histogram.c *seed *= 16807U; seed 357 3rdparty/libwebp/enc/histogram.c if (*seed == 0) { seed 358 3rdparty/libwebp/enc/histogram.c *seed = 1; seed 360 3rdparty/libwebp/enc/histogram.c return *seed; seed 368 3rdparty/libwebp/enc/histogram.c uint32_t seed = 0; seed 391 3rdparty/libwebp/enc/histogram.c seed += iter; seed 395 3rdparty/libwebp/enc/histogram.c const uint32_t idx1 = MyRand(&seed) % out_size; seed 397 3rdparty/libwebp/enc/histogram.c const uint32_t diff = (tmp < 3) ? tmp : MyRand(&seed) % (out_size - 1); seed 163 3rdparty/openexr/Imath/ImathRandom.cpp srand48 (long int seed) seed 165 3rdparty/openexr/Imath/ImathRandom.cpp staticState[2] = (unsigned short)(seed >> 16); seed 166 3rdparty/openexr/Imath/ImathRandom.cpp staticState[1] = (unsigned short)(seed); seed 78 3rdparty/openexr/Imath/ImathRandom.h Rand32 (unsigned long int seed = 0); seed 85 3rdparty/openexr/Imath/ImathRandom.h void init (unsigned long int seed); seed 138 3rdparty/openexr/Imath/ImathRandom.h Rand48 (unsigned long int seed = 0); seed 145 3rdparty/openexr/Imath/ImathRandom.h void init (unsigned long int seed); seed 231 3rdparty/openexr/Imath/ImathRandom.h void srand48 (long int seed); seed 240 3rdparty/openexr/Imath/ImathRandom.h Rand32::init (unsigned long int seed) seed 242 3rdparty/openexr/Imath/ImathRandom.h _state = (seed * 0xa5a573a5L) ^ 0x5a5a5a5aL; seed 247 3rdparty/openexr/Imath/ImathRandom.h Rand32::Rand32 (unsigned long int seed) seed 249 3rdparty/openexr/Imath/ImathRandom.h init (seed); seed 286 3rdparty/openexr/Imath/ImathRandom.h Rand48::init (unsigned long int seed) seed 288 3rdparty/openexr/Imath/ImathRandom.h seed = (seed * 0xa5a573a5L) ^ 0x5a5a5a5aL; seed 290 3rdparty/openexr/Imath/ImathRandom.h _state[0] = (unsigned short int) (seed & 0xFFFF); seed 291 3rdparty/openexr/Imath/ImathRandom.h _state[1] = (unsigned short int) ((seed >> 16) & 0xFFFF); seed 292 3rdparty/openexr/Imath/ImathRandom.h _state[2] = (unsigned short int) (seed & 0xFFFF); seed 297 3rdparty/openexr/Imath/ImathRandom.h Rand48::Rand48 (unsigned long int seed) seed 299 3rdparty/openexr/Imath/ImathRandom.h init (seed); seed 264 apps/traincascade/old_ml_inner_functions.cpp CvMat* icvGenerateRandomClusterCenters ( int seed, const CvMat* data, seed 303 apps/traincascade/old_ml_inner_functions.cpp rng = cvRNG(seed); seed 252 apps/traincascade/old_ml_precomp.hpp CvMat* icvGenerateRandomClusterCenters( int seed, seed 170 modules/calib3d/src/rho.cpp virtual inline void fastSeed(uint64_t seed){ seed 173 modules/calib3d/src/rho.cpp prng.s[0] = seed; seed 174 modules/calib3d/src/rho.cpp prng.s[1] = ~seed;/* Guarantees one of the elements will be non-zero. */ seed 487 modules/calib3d/src/rho.cpp void rhoSeed(Ptr<RHO_HEST> p, uint64_t seed){ seed 488 modules/calib3d/src/rho.cpp p->fastSeed(seed); seed 134 modules/calib3d/src/rho.h void rhoSeed(Ptr<RHO_HEST> p, uint64_t seed); seed 2761 modules/core/include/opencv2/core.hpp void seed(unsigned s); seed 215 modules/core/include/opencv2/core/types_c.h CV_INLINE CvRNG cvRNG( int64 seed CV_DEFAULT(-1)) seed 217 modules/core/include/opencv2/core/types_c.h CvRNG rng = seed ? (uint64)seed : (uint64)(int64)-1; seed 882 modules/core/src/rand.cpp cv::RNG_MT19937::RNG_MT19937(unsigned s) { seed(s); } seed 884 modules/core/src/rand.cpp cv::RNG_MT19937::RNG_MT19937() { seed(5489U); } seed 57 modules/cudalegacy/test/NCVTestSourceProvider.hpp NCVTestSourceProvider(Ncv32u seed, T rangeLow, T rangeHigh, Ncv32u maxWidth, Ncv32u maxHeight) seed 77 modules/cudalegacy/test/NCVTestSourceProvider.hpp srand(seed); seed 47 modules/flann/include/opencv2/flann/random.h inline void seed_random(unsigned int seed) seed 49 modules/flann/include/opencv2/flann/random.h srand(seed); seed 130 modules/imgproc/src/floodfill.cpp floodFill_CnIR( Mat& image, Point seed, seed 134 modules/imgproc/src/floodfill.cpp _Tp* img = image.ptr<_Tp>(seed.y); seed 138 modules/imgproc/src/floodfill.cpp int XMin, XMax, YMin = seed.y, YMax = seed.y; seed 142 modules/imgproc/src/floodfill.cpp L = R = XMin = XMax = seed.x; seed 156 modules/imgproc/src/floodfill.cpp ICV_PUSH( seed.y, L, R, R + 1, R, UP ); seed 211 modules/imgproc/src/floodfill.cpp region->pt = seed; seed 282 modules/imgproc/src/floodfill.cpp Point seed, _Tp newVal, _MTp newMaskVal, seed 288 modules/imgproc/src/floodfill.cpp _Tp* img = (_Tp*)(pImage + step*seed.y); seed 290 modules/imgproc/src/floodfill.cpp _MTp* mask = (_MTp*)(pMask + maskStep*seed.y); seed 293 modules/imgproc/src/floodfill.cpp int XMin, XMax, YMin = seed.y, YMax = seed.y; seed 299 modules/imgproc/src/floodfill.cpp L = R = seed.x; seed 326 modules/imgproc/src/floodfill.cpp ICV_PUSH( seed.y, L, R, R + 1, R, UP ); seed 442 modules/imgproc/src/floodfill.cpp region->pt = seed; seed 7701 modules/ts/include/opencv2/ts/ts_gtest.h explicit Random(UInt32 seed) : state_(seed) {} seed 7703 modules/ts/include/opencv2/ts/ts_gtest.h void Reseed(UInt32 seed) { state_ = seed; } seed 558 modules/ts/src/ts_gtest.cpp inline int GetNextRandomSeed(int seed) { seed 559 modules/ts/src/ts_gtest.cpp GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed) seed 560 modules/ts/src/ts_gtest.cpp << "Invalid random seed " << seed << " - must be in [1, " seed 562 modules/ts/src/ts_gtest.cpp const int next_seed = seed + 1; seed 42 samples/cpp/ffilldemo.cpp Point seed = Point(x,y); seed 59 samples/cpp/ffilldemo.cpp area = floodFill(dst, mask, seed, newVal, &ccomp, Scalar(lo, lo, lo), seed 65 samples/cpp/ffilldemo.cpp area = floodFill(dst, seed, newVal, &ccomp, Scalar(lo, lo, lo), seed 60 samples/cpp/tutorial_code/Histograms_Matching/calcBackProject_Demo2.cpp Point seed = Point( x, y ); seed 69 samples/cpp/tutorial_code/Histograms_Matching/calcBackProject_Demo2.cpp floodFill( src, mask2, seed, newVal, 0, Scalar( lo, lo, lo ), Scalar( up, up, up), flags );