Searched defs:RNG (Results 1 - 4 of 4) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/
H A Doperations.hpp331 /////////////////////////////////// Multiply-with-Carry RNG ///////////////////////////////////
333 inline RNG::RNG() { state = 0xffffffff; } function in class:cv::RNG
334 inline RNG::RNG(uint64 _state) { state = _state ? _state : 0xffffffff; } function in class:cv::RNG
336 inline RNG::operator uchar() { return (uchar)next(); }
337 inline RNG::operator schar() { return (schar)next(); }
338 inline RNG::operator ushort() { return (ushort)next(); }
339 inline RNG::operator short() { return (short)next(); }
340 inline RNG
[all...]
H A Dbase.hpp604 class CV_EXPORTS RNG; member in namespace:cv
/external/opencv3/modules/core/include/opencv2/
H A Dcore.hpp2126 is much faster to use this function to retrieve the generator and then use RNG::operator _Tp() .
2127 @sa RNG, randu, randn
2129 CV_EXPORTS RNG& theRNG();
2139 @sa RNG, randn, theRNG
2152 @sa RNG, randu
2165 @sa RNG, sort
2167 CV_EXPORTS_W void randShuffle(InputOutputArray dst, double iterFactor = 1., RNG* rng = 0);
2601 class CV_EXPORTS RNG class in namespace:cv
2610 These are the RNG constructors. The first form sets the state to some
2616 RNG();
[all...]
/external/libgdx/backends/gdx-backends-gwt/libs/
H A Dgwt-dev.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gwt/ com/google/gwt/core/ ...

Completed in 88 milliseconds