func crypto/elliptic.Marshal

4 uses

	crypto/elliptic (current package)
		elliptic.go#L315: func Marshal(curve Curve, x, y *big.Int) []byte {

	crypto/tls
		key_schedule.go#L164: 	return elliptic.Marshal(curve, p.x, p.y)

	crypto/x509
		sec1.go#L60: 		PublicKey:     asn1.BitString{Bytes: elliptic.Marshal(key.Curve, key.X, key.Y)},
		x509.go#L88: 		publicKeyBytes = elliptic.Marshal(pub.Curve, pub.X, pub.Y)