Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for mmap (0.08 sec)

  1. src/syscall/zsyscall_openbsd_amd64.go

    	}
    	return
    }
    
    func libc_writev_trampoline()
    
    //go:cgo_import_dynamic libc_writev writev "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, 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)
  2. src/syscall/zsyscall_openbsd_arm64.go

    	}
    	return
    }
    
    func libc_writev_trampoline()
    
    //go:cgo_import_dynamic libc_writev writev "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, 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)
  3. src/syscall/zsyscall_openbsd_ppc64.go

    	}
    	return
    }
    
    func libc_writev_trampoline()
    
    //go:cgo_import_dynamic libc_writev writev "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, 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)
  4. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    // by index. The generous alignment accommodates mmap-friendly data structures.
    table Buffer {
      data:[ubyte] (force_align: 16);
    }
    
    table Metadata {
      // A human readable string to uniquely identify a Metadata.
      name:string;
      // An index to the buffers table.
      buffer:uint;
    }
    
    // Map from an alias name of tensor to tensor index in the graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_openbsd_386.go

    	}
    	return
    }
    
    func libc_writev_trampoline()
    
    //go:cgo_import_dynamic libc_writev writev "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, 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)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	POLLPRI                         = 0x0010
    	POLLERR                         = 0x0020
    	POLLHUP                         = 0x0040
    	POLLNVAL                        = 0x0080
    	PROT_READ                       = 0x1 // mmap - page can be read
    	PROT_WRITE                      = 0x2 // page can be written
    	PROT_NONE                       = 0x4 // can't be accessed
    	PROT_EXEC                       = 0x8 // can be executed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/ByteStreams.java

       *       channel have their own file descriptors. Generally this only happens when both channels
       *       are files or sockets. This performs zero copies - the bytes never enter userspace.
       *   <li>Use mmap(2) or equivalent. Requires that either the input channel or the output channel
       *       have file descriptors. Bytes are copied from the file into a kernel buffer, then directly
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. src/runtime/os_linux.go

    		// try using mincore to detect the physical page size.
    		// mincore should return EINVAL when address is not a multiple of system page size.
    		const size = 256 << 10 // size of memory region to allocate
    		p, err := mmap(nil, size, _PROT_READ|_PROT_WRITE, _MAP_ANON|_MAP_PRIVATE, -1, 0)
    		if err != 0 {
    			return
    		}
    		var n uintptr
    		for n = 4 << 10; n < size; n <<= 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/test.go

    typedef const int *issue23720B;
    void issue23720F(issue23720B a) {}
    
    // issue 24206
    #if defined(__linux__) && defined(__x86_64__)
    #include <sys/mman.h>
    // Returns string with null byte at the last valid address
    char* dangerousString1() {
    	int pageSize = 4096;
    	char *data = mmap(0, 2 * pageSize, PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, 0, 0);
    	mprotect(data + pageSize,pageSize,PROT_NONE);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/ByteStreams.java

       *       channel have their own file descriptors. Generally this only happens when both channels
       *       are files or sockets. This performs zero copies - the bytes never enter userspace.
       *   <li>Use mmap(2) or equivalent. Requires that either the input channel or the output channel
       *       have file descriptors. Bytes are copied from the file into a kernel buffer, then directly
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top