encoding/binary.ByteOrder.PutUint64 (method)

11 uses

	encoding/binary (current package)
		binary.go#L40: 	PutUint64([]byte, uint64)
		binary.go#L414: 			order.PutUint64(bs, uint64(*v))
		binary.go#L416: 			order.PutUint64(bs, uint64(v))
		binary.go#L419: 				order.PutUint64(bs[8*i:], uint64(x))
		binary.go#L422: 			order.PutUint64(bs, *v)
		binary.go#L424: 			order.PutUint64(bs, v)
		binary.go#L427: 				order.PutUint64(bs[8*i:], x)
		binary.go#L438: 			order.PutUint64(bs, math.Float64bits(*v))
		binary.go#L440: 			order.PutUint64(bs, math.Float64bits(v))
		binary.go#L443: 				order.PutUint64(bs[8*i:], math.Float64bits(x))
		binary.go#L594: 	e.order.PutUint64(e.buf[e.offset:e.offset+8], x)