reflect.Value.SetUint (method)

13 uses

	reflect (current package)
		value.go#L1715: func (v Value) SetUint(x uint64) {

	encoding/binary
		binary.go#L583: 		v.SetUint(uint64(d.uint8()))
		binary.go#L585: 		v.SetUint(uint64(d.uint16()))
		binary.go#L587: 		v.SetUint(uint64(d.uint32()))
		binary.go#L589: 		v.SetUint(d.uint64())

	encoding/gob
		decode.go#L260: 	value.SetUint(v)
		decode.go#L278: 	value.SetUint(v)
		decode.go#L296: 	value.SetUint(v)
		decode.go#L308: 	value.SetUint(v)

	encoding/json
		decode.go#L1010: 			v.SetUint(n)

	fmt
		scan.go#L1030: 			v.SetUint(s.scanUint(verb, v.Type().Bits()))
		scan.go#L1042: 				v.Index(i).SetUint(uint64(str[i]))

	vendor/golang.org/x/crypto/cryptobyte
		asn1.go#L276: 		reflect.ValueOf(out).Elem().SetUint(u)