Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for __asan_read_go (0.13 sec)

  1. src/runtime/asan.go

    //go:noescape
    func asanpoison(addr unsafe.Pointer, sz uintptr)
    
    //go:noescape
    func asanregisterglobals(addr unsafe.Pointer, n uintptr)
    
    // These are called from asan_GOARCH.s
    //
    //go:cgo_import_static __asan_read_go
    //go:cgo_import_static __asan_write_go
    //go:cgo_import_static __asan_unpoison_go
    //go:cgo_import_static __asan_poison_go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:39:58 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/runtime/msan.go

    //go:noescape
    func msanfree(addr unsafe.Pointer, sz uintptr)
    
    //go:linkname msanmove
    //go:noescape
    func msanmove(dst, src unsafe.Pointer, sz uintptr)
    
    // These are called from msan_GOARCH.s
    //
    //go:cgo_import_static __msan_read_go
    //go:cgo_import_static __msan_write_go
    //go:cgo_import_static __msan_malloc_go
    //go:cgo_import_static __msan_free_go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 20:50:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top