reflect.Value.SetUint (method)

25 uses

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

	database/sql
		convert.go#L451: 		dv.SetUint(u64)

	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)

	encoding/xml
		read.go#L630: 			dst.SetUint(0)
		read.go#L637: 		dst.SetUint(utmp)

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

	github.com/jackc/pgtype
		convert.go#L306: 					el.SetUint(uint64(srcVal))

	golang.org/x/crypto/ssh
		messages.go#L429: 			field.SetUint(u64)
		messages.go#L435: 			field.SetUint(uint64(u32))
		messages.go#L440: 			field.SetUint(uint64(data[0]))

	gopkg.in/yaml.v2
		decode.go#L520: 				out.SetUint(uint64(resolved))
		decode.go#L525: 				out.SetUint(uint64(resolved))
		decode.go#L530: 				out.SetUint(uint64(resolved))
		decode.go#L535: 				out.SetUint(uint64(resolved))

	text/template
		exec.go#L876: 		value.SetUint(n.Uint64)

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