mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-24 12:32:21 +00:00
11 lines
325 B
Go
11 lines
325 B
Go
package asmpkg
|
|
|
|
func CallCAdd_SystemV_ABI(cfun uintptr, a, b int64) int64
|
|
func CallCAdd_Win64_ABI(cfun uintptr, a, b int64) int64
|
|
|
|
func SyscallWrite_Darwin(fd int, msg string) int
|
|
func SyscallWrite_Linux(fd int, msg string) int
|
|
func SyscallWrite_Windows(fd int, msg string) int
|
|
|
|
func CopySlice_AVX2(dst, src []byte, len int)
|