Home | History | Annotate | Download | only in reflect

Lines Matching refs:makeInt

2258 // makeInt returns a Value of type t equal to bits (possibly truncated),
2260 func makeInt(f flag, bits uint64, t Type) Value {
2332 return makeInt(v.flag&flagRO, uint64(v.Int()), t)
2337 return makeInt(v.flag&flagRO, v.Uint(), t)
2342 return makeInt(v.flag&flagRO, uint64(int64(v.Float())), t)
2347 return makeInt(v.flag&flagRO, uint64(v.Float()), t)