reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

usr/include/c++/7.4.0/bits/random.tcc
 3257       std::fill(__begin, __end, _Type(0x8b8b8b8bu));
 3272 	  _Type __arg = (__begin[__k % __n]
 3275 	  _Type __r1 = __arg ^ (__arg >> 27);
 3276 	  __r1 = __detail::__mod<_Type,
 3277 		    __detail::_Shift<_Type, 32>::__value>(1664525u * __r1);
 3278 	  _Type __r2 = __r1;
 3285 	  __r2 = __detail::__mod<_Type,
 3286 	           __detail::_Shift<_Type, 32>::__value>(__r2);
 3294 	  _Type __arg = (__begin[__k % __n]
 3297 	  _Type __r3 = __arg ^ (__arg >> 27);
 3298 	  __r3 = __detail::__mod<_Type,
 3299 		   __detail::_Shift<_Type, 32>::__value>(1566083941u * __r3);
 3300 	  _Type __r4 = __r3 - __k % __n;
 3301 	  __r4 = __detail::__mod<_Type,
 3302 	           __detail::_Shift<_Type, 32>::__value>(__r4);