type golang.org/x/exp/rand.LockedSource

9 uses

	golang.org/x/exp/rand (current package)
		rand.go#L59: 	if lk, ok := r.src.(*LockedSource); ok {
		rand.go#L217: 	if lk, ok := r.src.(*LockedSource); ok {
		rand.go#L249: var globalRand = New(&LockedSource{src: NewSource(1).(*PCGSource)})
		rand.go#L252: var _ *PCGSource = globalRand.src.(*LockedSource).src
		rand.go#L339: type LockedSource struct {
		rand.go#L344: func (s *LockedSource) Uint64() (n uint64) {
		rand.go#L351: func (s *LockedSource) Seed(seed uint64) {
		rand.go#L358: func (s *LockedSource) seedPos(seed uint64, readPos *int8) {
		rand.go#L366: func (s *LockedSource) Read(p []byte, readVal *uint64, readPos *int8) (n int, err error) {