Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Spence (0.25 sec)

  1. doc/asm.html

    	r   int
    }
    </pre>
    
    <p>
    Assembly can refer to the size of this struct
    as <code>reader__size</code> and the offsets of the two fields
    as <code>reader_buf</code> and <code>reader_r</code>.
    Hence, if register <code>R1</code> contains a pointer to
    a <code>reader</code>, assembly can reference the <code>r</code> field
    as <code>reader_r(R1)</code>.
    </p>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  2. api/go1.20.txt

    pkg syscall (freebsd-riscv64), type Flock_t struct, Sysid int32 #53466
    pkg syscall (freebsd-riscv64), type Flock_t struct, Type int16 #53466
    pkg syscall (freebsd-riscv64), type Flock_t struct, Whence int16 #53466
    pkg syscall (freebsd-riscv64), type Fsid struct #53466
    pkg syscall (freebsd-riscv64), type Fsid struct, Val [2]int32 #53466
    pkg syscall (freebsd-riscv64), type ICMPv6Filter struct #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  3. api/go1.3.txt

    pkg syscall (linux-386), type Flock_t struct, Pid int32
    pkg syscall (linux-386), type Flock_t struct, Start int64
    pkg syscall (linux-386), type Flock_t struct, Type int16
    pkg syscall (linux-386), type Flock_t struct, Whence int16
    pkg syscall (linux-386-cgo), func FcntlFlock(uintptr, int, *Flock_t) error
    pkg syscall (linux-386-cgo), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error)
    pkg syscall (linux-386-cgo), type Flock_t struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	LEAQ (R11), DX                          // 498d13
    	LEAQ (BX), R11                          // 4c8d1b
    	LEAQ (R11), R11                         // 4d8d1b
    	LEAVEQ                                  // 66c9 or c9
    	LFENCE                                  // 0faee8
    	LFSW (BX), DX                           // 660fb413
    	LFSW (R11), DX                          // 66410fb413
    	LFSW (BX), R11                          // 66440fb41b
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  5. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type Flock_t struct, Start int64
    pkg syscall (netbsd-arm64-cgo), type Flock_t struct, Type int16
    pkg syscall (netbsd-arm64-cgo), type Flock_t struct, Whence int16
    pkg syscall (netbsd-arm64-cgo), type Fsid struct
    pkg syscall (netbsd-arm64-cgo), type Fsid struct, X__fsid_val [2]int32
    pkg syscall (netbsd-arm64-cgo), type ICMPv6Filter struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg syscall (darwin-arm64), type Flock_t struct, Pid int32
    pkg syscall (darwin-arm64), type Flock_t struct, Start int64
    pkg syscall (darwin-arm64), type Flock_t struct, Type int16
    pkg syscall (darwin-arm64), type Flock_t struct, Whence int16
    pkg syscall (darwin-arm64), type Fsid struct
    pkg syscall (darwin-arm64), type Fsid struct, Val [2]int32
    pkg syscall (darwin-arm64), type Fstore_t struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  7. api/go1.14.txt

    pkg syscall (freebsd-arm64), type Flock_t struct, Sysid int32
    pkg syscall (freebsd-arm64), type Flock_t struct, Type int16
    pkg syscall (freebsd-arm64), type Flock_t struct, Whence int16
    pkg syscall (freebsd-arm64), type Fsid struct
    pkg syscall (freebsd-arm64), type Fsid struct, Val [2]int32
    pkg syscall (freebsd-arm64), type ICMPv6Filter struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall (darwin-386), type Flock_t struct, Pid int32
    pkg syscall (darwin-386), type Flock_t struct, Start int64
    pkg syscall (darwin-386), type Flock_t struct, Type int16
    pkg syscall (darwin-386), type Flock_t struct, Whence int16
    pkg syscall (darwin-386), type Fsid struct
    pkg syscall (darwin-386), type Fsid struct, Val [2]int32
    pkg syscall (darwin-386), type Fstore_t struct
    pkg syscall (darwin-386), type Fstore_t struct, Bytesalloc int64
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  9. src/bytes/reader.go

    // Seek implements the [io.Seeker] interface.
    func (r *Reader) Seek(offset int64, whence int) (int64, error) {
    	r.prevRune = -1
    	var abs int64
    	switch whence {
    	case io.SeekStart:
    		abs = offset
    	case io.SeekCurrent:
    		abs = r.i + offset
    	case io.SeekEnd:
    		abs = int64(len(r.s)) + offset
    	default:
    		return 0, errors.New("bytes.Reader.Seek: invalid whence")
    	}
    	if abs < 0 {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  10. doc/go_spec.html

    	</li>
    </ul>
    
    <p>
    The quantification "the set of all non-interface types" refers not just to all (non-interface)
    types declared in the program at hand, but all possible types in all possible programs, and
    hence is infinite.
    Similarly, given the set of all non-interface types that implement a particular method, the
    intersection of the method sets of those types will contain exactly that method, even if all
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top