Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 15 of 15 for R13 (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	PSTH R1, $1, 12345678(R2)               // 061000bcb022614e
    	PSTQ R2, $1, 12345678(R2)               // 041000bcf042614e
    	PSTW R1, $1, 12345678(R2)               // 061000bc9022614e
    	PSTW R24, $0, 45(R13)                   // 06000000930d002d
    	PSTXSD V1, $1, 12345678(R2)             // 041000bcb822614e
    	PSTXSSP V1, $1, 1234567890(R0)          // 04104996bc2002d2
    	PSTXSSP V1, $1, 1234567890(R1)          // 04104996bc2102d2
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Mar 23 20:52:57 GMT 2023
    - 14.3K bytes
    - Click Count (0)
  2. src/bufio/bufio_test.go

    )
    
    // Reads from a reader and rot13s the result.
    type rot13Reader struct {
    	r io.Reader
    }
    
    func newRot13Reader(r io.Reader) *rot13Reader {
    	r13 := new(rot13Reader)
    	r13.r = r
    	return r13
    }
    
    func (r13 *rot13Reader) Read(p []byte) (int, error) {
    	n, err := r13.r.Read(p)
    	for i := 0; i < n; i++ {
    		c := p[i] | 0x20 // lowercase byte
    		if 'a' <= c && c <= 'm' {
    			p[i] += 13
    		} else if 'n' <= c && c <= 'z' {
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Feb 07 01:08:54 GMT 2025
    - 51.6K bytes
    - Click Count (0)
  3. doc/asm.html

    The assembler uses them to hold temporary values when assembling some instructions.
    </p>
    
    <p>
    <code>R13</code> points to the <code>g</code> (goroutine) structure.
    This register must be referred to as <code>g</code>; the name <code>R13</code> is not recognized.
    </p>
    
    <p>
    <code>R15</code> points to the stack frame and should typically only be accessed using the
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Nov 14 19:09:46 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  4. src/cmd/asm/internal/asm/testdata/avx512enc/avx512f.s

    	VCVTSD2USIQ X20, R13                               // 6231ff0879ec or 6231ff2879ec or 6231ff4879ec
    	VCVTSD2USIQ (CX), R13                              // 6271ff087929 or 6271ff287929 or 6271ff487929
    	VCVTSD2USIQ 99(R15), R13                           // 6251ff0879af63000000 or 6251ff2879af63000000 or 6251ff4879af63000000
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 410.5K bytes
    - Click Count (0)
  5. src/cmd/asm/internal/asm/testdata/avx512enc/avx512dq.s

    	VPEXTRD $64, X30, -7(DI)                           // 62637d0816b7f9ffffff40
    	VPEXTRQ $27, X30, R9                               // 6243fd0816f11b
    	VPEXTRQ $27, X30, R13                              // 6243fd0816f51b
    	VPEXTRQ $27, X30, -15(R14)(R15*1)                  // 6203fd0816b43ef1ffffff1b
    	VPEXTRQ $27, X30, -15(BX)                          // 6263fd0816b3f1ffffff1b
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 194.8K bytes
    - Click Count (0)
Back to Top