Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for vdsoCall (0.09 sec)

  1. src/runtime/os_linux_arm.go

    package runtime
    
    import (
    	"internal/cpu"
    	"unsafe"
    )
    
    const (
    	_HWCAP_VFP   = 1 << 6  // introduced in at least 2.6.11
    	_HWCAP_VFPv3 = 1 << 13 // introduced in 2.6.30
    )
    
    func vdsoCall()
    
    func checkgoarm() {
    	// On Android, /proc/self/auxv might be unreadable and hwcap won't
    	// reflect the CPU capabilities. Assume that every Android arm device
    	// has the necessary floating point hardware available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top