sync/atomic.Uint32.Load (method)

7 uses

	sync/atomic (current package)
		type.go#L147: func (x *Uint32) Load() uint32 { return LoadUint32(&x.v) }

	internal/sync
		hashtriemap.go#L31: 	if ht.inited.Load() == 0 {
		hashtriemap.go#L41: 	if ht.inited.Load() != 0 {

	os
		exec.go#L166: 	status := processStatus(p.state.Load())
		exec.go#L179: 	status = processStatus(p.state.Load())
		exec.go#L200: 	return processStatus(p.state.Load())
		exec.go#L305: 		state := p.state.Load()