File: sums_default.go

package info (click to toggle)
golang-github-segmentio-asm 1.2.0%2Bgit20231107.1cfacc8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 932 kB
  • sloc: asm: 6,093; makefile: 32
file content (20 lines) | stat: -rw-r--r-- 301 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//go:build purego || !amd64
// +build purego !amd64

package slices

func sumUint64(x, y []uint64) {
	sumUint64Generic(x, y)
}

func sumUint32(x, y []uint32) {
	sumUint32Generic(x, y)
}

func sumUint16(x, y []uint16) {
	sumUint16Generic(x, y)
}

func sumUint8(x, y []uint8) {
	sumUint8Generic(x, y)
}