Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for callgetsystemcfg (0.16 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_aix.go

    		PPC64.IsPOWER8 = true
    	}
    	if impl&_IMPL_POWER9 != 0 {
    		PPC64.IsPOWER8 = true
    		PPC64.IsPOWER9 = true
    	}
    
    	Initialized = true
    }
    
    func getsystemcfg(label int) (n uint64) {
    	r0, _ := callgetsystemcfg(label)
    	n = uint64(r0)
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 605 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/syscall_aix_gccgo.go

    // gccgo's libgo and thus must not used a CGo method.
    
    //go:build aix && gccgo
    
    package cpu
    
    import (
    	"syscall"
    )
    
    //extern getsystemcfg
    func gccgoGetsystemcfg(label uint32) (r uint64)
    
    func callgetsystemcfg(label int) (r1 uintptr, e1 syscall.Errno) {
    	r1 = uintptr(gccgoGetsystemcfg(uint32(label)))
    	e1 = syscall.GetErrno()
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 726 bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/syscall_aix_ppc64_gc.go

    // Implemented in runtime/syscall_aix.go.
    func rawSyscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err errno)
    func syscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err errno)
    
    func callgetsystemcfg(label int) (r1 uintptr, e1 errno) {
    	r1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_getsystemcfg)), 1, uintptr(label), 0, 0, 0, 0, 0)
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 988 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    	r1 = uintptr(C.utime(C.uintptr_t(_p0), C.uintptr_t(buf)))
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callgetsystemcfg(label int) (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.getsystemcfg(C.int(label)))
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getsystemcfg(label int) (n uint64) {
    	r0, _ := callgetsystemcfg(label)
    	n = uint64(r0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func umount(target string) (err error) {
    	var _p0 *byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go

    	r1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_utime)), 2, _p0, buf, 0, 0, 0, 0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callgetsystemcfg(label int) (r1 uintptr, e1 Errno) {
    	r1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_getsystemcfg)), 1, uintptr(label), 0, 0, 0, 0, 0)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 42.4K bytes
    - Viewed (0)
Back to top