fe_arm64.go 338 B

123456789101112131415
  1. // Copyright (c) 2020 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build arm64 && gc && !purego
  5. package field
  6. //go:noescape
  7. func carryPropagate(v *Element)
  8. func (v *Element) carryPropagate() *Element {
  9. carryPropagate(v)
  10. return v
  11. }