Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Hencke (0.21 sec)

  1. 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)
  2. src/cmd/asm/internal/asm/testdata/riscv64.s

    	SW	X5, 4(X6)				// 23225300
    	SH	X5, (X6)				// 23105300
    	SH	X5, 4(X6)				// 23125300
    	SB	X5, (X6)				// 23005300
    	SB	X5, 4(X6)				// 23025300
    
    	// 2.7: Memory Ordering Instructions
    	FENCE						// 0f00f00f
    
    	// 5.2: Integer Computational Instructions (RV64I)
    	ADDIW	$1, X5, X6				// 1b831200
    	SLLIW	$1, X5, X6				// 1b931200
    	SRLIW	$1, X5, X6				// 1bd31200
    	SRAIW	$1, X5, X6				// 1bd31240
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  3. 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)
  4. src/bufio/bufio.go

    			return n - remain, b.readErr()
    		}
    	}
    }
    
    // Read reads data into p.
    // It returns the number of bytes read into p.
    // The bytes are taken from at most one Read on the underlying [Reader],
    // hence n may be less than len(p).
    // To read exactly len(p) bytes, use io.ReadFull(b, p).
    // If the underlying [Reader] can return a non-zero count with io.EOF,
    // then this Read method can do so as well; see the [io.Reader] docs.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
Back to top