Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for libc_munmap (0.27 sec)

  1. src/runtime/sys_openbsd_arm.s

    	MOVW	R13, R9
    	BIC     $0x7, R13		// align for ELF ABI
    	MOVW	4(R0), R1		// arg 2 len
    	MOVW	0(R0), R0		// arg 1 addr
    	BL	libc_munmap(SB)
    	CMP	$-1, R0
    	BNE	3(PC)
    	MOVW	$0, R8			// crash on failure
    	MOVW	R8, (R8)
    	MOVW	R9, R13
    	RET
    
    TEXT runtime·madvise_trampoline(SB), NOSPLIT, $0
    	MOVW	R13, R9
    	BIC     $0x7, R13		// align for ELF ABI
    	MOVW	4(R0), R1		// arg 2 len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  2. src/runtime/sys_openbsd_386.s

    	PUSHL	BP
    	MOVL	SP, BP
    	SUBL	$8, SP
    	MOVL	16(SP), DX		// pointer to args
    	MOVL	0(DX), AX
    	MOVL	4(DX), BX
    	MOVL	AX, 0(SP)		// arg 1 - addr
    	MOVL	BX, 4(SP)		// arg 2 - len
    	CALL	libc_munmap(SB)
    	CMPL	AX, $-1
    	JNE	2(PC)
    	MOVL	$0xf1, 0xf1		// crash on failure
    	MOVL	BP, SP
    	POPL	BP
    	RET
    
    TEXT runtime·madvise_trampoline(SB),NOSPLIT,$0
    	PUSHL	BP
    	MOVL	SP, BP
    	SUBL	$12, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc___xnet_bind __xnet_bind "libsocket.so"
    //go:cgo_import_dynamic libc___xnet_connect __xnet_connect "libsocket.so"
    //go:cgo_import_dynamic libc_mmap mmap "libc.so"
    //go:cgo_import_dynamic libc_munmap munmap "libc.so"
    //go:cgo_import_dynamic libc_sendfile sendfile "libsendfile.so"
    //go:cgo_import_dynamic libc___xnet_sendto __xnet_sendto "libsocket.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_openbsd_arm.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_munmap_trampoline()
    
    //go:cgo_import_dynamic libc_munmap munmap "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getfsstat(stat *Statfs_t, bufsize uintptr, flags int) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_openbsd_riscv64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_munmap_trampoline()
    
    //go:cgo_import_dynamic libc_munmap munmap "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getfsstat(stat *Statfs_t, bufsize uintptr, flags int) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_openbsd_amd64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_munmap_trampoline()
    
    //go:cgo_import_dynamic libc_munmap munmap "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getfsstat(stat *Statfs_t, bufsize uintptr, flags int) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_openbsd_arm64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_munmap_trampoline()
    
    //go:cgo_import_dynamic libc_munmap munmap "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getfsstat(stat *Statfs_t, bufsize uintptr, flags int) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  8. src/syscall/zsyscall_openbsd_ppc64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_munmap_trampoline()
    
    //go:cgo_import_dynamic libc_munmap munmap "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getfsstat(stat *Statfs_t, bufsize uintptr, flags int) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_munmap_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_munmap munmap "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getfsstat(stat *Statfs_t, bufsize uintptr, flags int) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_munmap_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_munmap munmap "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getfsstat(stat *Statfs_t, bufsize uintptr, flags int) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top