encoding/binary.ByteOrder.PutUint64 (method)

11 uses

	encoding/binary (current package)
		binary.go#L40: 	PutUint64([]byte, uint64)
		binary.go#L343: 			order.PutUint64(bs, uint64(*v))
		binary.go#L345: 			order.PutUint64(bs, uint64(v))
		binary.go#L348: 				order.PutUint64(bs[8*i:], uint64(x))
		binary.go#L351: 			order.PutUint64(bs, *v)
		binary.go#L353: 			order.PutUint64(bs, v)
		binary.go#L356: 				order.PutUint64(bs[8*i:], x)
		binary.go#L367: 			order.PutUint64(bs, math.Float64bits(*v))
		binary.go#L369: 			order.PutUint64(bs, math.Float64bits(v))
		binary.go#L372: 				order.PutUint64(bs[8*i:], math.Float64bits(x))
		binary.go#L520: 	e.order.PutUint64(e.buf[e.offset:e.offset+8], x)