gitee.com/quant1x/num@v0.3.2/asm/c2goasm/test/clib_amd64.go (about)

     1  //go:build !noasm && !appengine
     2  // +build !noasm,!appengine
     3  
     4  package c2goasmtest
     5  
     6  import "unsafe"
     7  
     8  //go:noescape
     9  func _ClibFloor32(fl float32) float32
    10  
    11  //go:noescape
    12  func _ClibFloor64(fl float64) float64
    13  
    14  //go:noescape
    15  func _ClibMemcpy(dst, src unsafe.Pointer, n uint) unsafe.Pointer
    16  
    17  //go:noescape
    18  func _ClibMemset(dst unsafe.Pointer, c int, n uint) unsafe.Pointer