sync/atomic.Uint32.Load (method)

8 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#L160: 	status := processStatus(p.state.Load())
		exec.go#L173: 	status = processStatus(p.state.Load())
		exec.go#L194: 	return processStatus(p.state.Load())
		exec.go#L299: 		state := p.state.Load()

	testing
		testing.go#L2724: 	return *failFast && numFailed.Load() > 0