reflect.Type.Bits (method)

8 uses

	reflect (current package)
		type.go#L129: 	Bits() int

	encoding/gob
		decode.go#L1228: 	switch reflect.TypeOf(int(0)).Bits() {
		decode.go#L1242: 	switch reflect.TypeOf(uintptr(0)).Bits() {

	encoding/json
		decode.go#L1013: 			n, err := strconv.ParseFloat(s, v.Type().Bits())

	fmt
		scan.go#L1028: 			v.SetInt(s.scanInt(verb, v.Type().Bits()))
		scan.go#L1030: 			v.SetUint(s.scanUint(verb, v.Type().Bits()))
		scan.go#L1047: 			v.SetFloat(s.convertFloat(s.floatToken(), v.Type().Bits()))
		scan.go#L1049: 			v.SetComplex(s.scanComplex(verb, v.Type().Bits()))