Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 667 for syscalls (0.28 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    // go run mksysnum.go https://cgit.freebsd.org/src/plain/sys/kern/syscalls.master?h=stable/12
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && freebsd
    
    package unix
    
    const (
    	// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int
    	SYS_EXIT                     = 1   // { void sys_exit(int rval); } exit sys_exit_args void
    	SYS_FORK                     = 2   // { int fork(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    // go run mksysnum.go https://cgit.freebsd.org/src/plain/sys/kern/syscalls.master?h=stable/12
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build arm && freebsd
    
    package unix
    
    const (
    	// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int
    	SYS_EXIT                     = 1   // { void sys_exit(int rval); } exit sys_exit_args void
    	SYS_FORK                     = 2   // { int fork(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    // go run mksysnum.go https://cgit.freebsd.org/src/plain/sys/kern/syscalls.master?h=stable/12
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build 386 && freebsd
    
    package unix
    
    const (
    	// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int
    	SYS_EXIT                     = 1   // { void sys_exit(int rval); } exit sys_exit_args void
    	SYS_FORK                     = 2   // { int fork(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    // go run mksysnum.go https://cgit.freebsd.org/src/plain/sys/kern/syscalls.master?h=stable/12
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build riscv64 && freebsd
    
    package unix
    
    const (
    	// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int
    	SYS_EXIT                     = 1   // { void sys_exit(int rval); } exit sys_exit_args void
    	SYS_FORK                     = 2   // { int fork(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    // go run mksysnum.go https://cgit.freebsd.org/src/plain/sys/kern/syscalls.master?h=stable/12
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build arm64 && freebsd
    
    package unix
    
    const (
    	// SYS_NOSYS = 0;  // { int nosys(void); } syscall nosys_args int
    	SYS_EXIT                     = 1   // { void sys_exit(int rval); } exit sys_exit_args void
    	SYS_FORK                     = 2   // { int fork(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. cmd/object-multipart-handlers.go

    			in := io.Reader(hashReader)
    			if size > encryptBufferThreshold {
    				// The encryption reads in blocks of 64KB.
    				// We add a buffer on bigger files to reduce the number of syscalls upstream.
    				in = bufio.NewReaderSize(hashReader, encryptBufferSize)
    			}
    			reader, err = sio.EncryptReader(in, sio.Config{Key: partEncryptionKey[:], CipherSuites: fips.DARECiphers()})
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/asm_bsd_386.s

    #include "textflag.h"
    
    // System call support for 386 BSD
    
    // Just jump to package syscall's implementation for all these functions.
    // The runtime may know about them.
    
    TEXT	·Syscall(SB),NOSPLIT,$0-28
    	JMP	syscall·Syscall(SB)
    
    TEXT	·Syscall6(SB),NOSPLIT,$0-40
    	JMP	syscall·Syscall6(SB)
    
    TEXT	·Syscall9(SB),NOSPLIT,$0-52
    	JMP	syscall·Syscall9(SB)
    
    TEXT	·RawSyscall(SB),NOSPLIT,$0-28
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 696 bytes
    - Viewed (0)
  8. src/runtime/os_windows.go

    }
    
    //go:linkname windows_QueryPerformanceCounter internal/syscall/windows.QueryPerformanceCounter
    func windows_QueryPerformanceCounter() int64 {
    	var counter int64
    	stdcall1(_QueryPerformanceCounter, uintptr(unsafe.Pointer(&counter)))
    	return counter
    }
    
    //go:linkname windows_QueryPerformanceFrequency internal/syscall/windows.QueryPerformanceFrequency
    func windows_QueryPerformanceFrequency() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s

    #include "textflag.h"
    
    // System call support for ARM64 BSD
    
    // Just jump to package syscall's implementation for all these functions.
    // The runtime may know about them.
    
    TEXT	·Syscall(SB),NOSPLIT,$0-56
    	JMP	syscall·Syscall(SB)
    
    TEXT	·Syscall6(SB),NOSPLIT,$0-80
    	JMP	syscall·Syscall6(SB)
    
    TEXT	·Syscall9(SB),NOSPLIT,$0-104
    	JMP	syscall·Syscall9(SB)
    
    TEXT	·RawSyscall(SB),NOSPLIT,$0-56
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 709 bytes
    - Viewed (0)
  10. cmd/encryption-v1.go

    	if r.ContentLength > encryptBufferThreshold {
    		// The encryption reads in blocks of 64KB.
    		// We add a buffer on bigger files to reduce the number of syscalls upstream.
    		content = bufio.NewReaderSize(content, encryptBufferSize)
    	}
    
    	var (
    		key   []byte
    		keyID string
    		ctx   kms.Context
    		err   error
    	)
    	kind, _ := crypto.IsRequested(r.Header)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top