Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Y15 (0.05 sec)

  1. src/crypto/sha1/sha1block_amd64.s

    	PRECALC_32_79(Y12,Y13,Y14,Y3,Y8,0x40,0x160) \
    	PRECALC_32_79(Y8,Y12,Y13,Y15,Y7,0x40,0x180) \
    	PRECALC_32_79(Y7,Y8,Y12,Y14,Y5,0x40,0x1a0) \
    	PRECALC_32_79(Y5,Y7,Y8,Y13,Y3,0x40,0x1c0) \
    	PRECALC_32_79(Y3,Y5,Y7,Y12,Y15,0x60,0x1e0) \
    	PRECALC_32_79(Y15,Y3,Y5,Y8,Y14,0x60,0x200) \
    	PRECALC_32_79(Y14,Y15,Y3,Y7,Y13,0x60,0x220) \
    	PRECALC_32_79(Y13,Y14,Y15,Y5,Y12,0x60,0x240) \
    	PRECALC_32_79(Y12,Y13,Y14,Y3,Y8,0x60,0x260)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64error.s

    	VPGATHERQQ (BP)(Y15*2), K1, Y15 // ERROR "index and destination registers should be distinct"
    	VPGATHERQQ (BP)(Z20*2), K1, Z20 // ERROR "index and destination registers should be distinct"
    	VPGATHERDQ (BP)(X2*2), K1, X2   // ERROR "index and destination registers should be distinct"
    	VPGATHERDQ (BP)(X15*2), K1, Y15 // ERROR "index and destination registers should be distinct"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/pcrelative_test.go

    	"fmt"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"testing"
    )
    
    const asmData = `
    GLOBL zeros<>(SB),8,$64
    TEXT ·testASM(SB),4,$0
    VMOVUPS zeros<>(SB), %s // PC relative relocation is off by 1, for Y8-Y15, Z8-15 and Z24-Z31
    RET
    `
    
    const goData = `
    package main
    
    func testASM()
    
    func main() {
    	testASM()
    }
    `
    
    func objdumpOutput(t *testing.T, mname, source string) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 23:16:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue39634.go

    // crash 15
    func y15() { var a /* ERROR "declared and not used" */ interface{ p() } = G15[string]{} }
    type G15[X any] s /* ERROR "undefined" */
    func (G15 /* ERRORx `generic type .* without instantiation` */ ) p()
    
    // crash 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	// EVEX: corner cases for High-16 registers.
    	VADDPD X31, X16, X15          // 6211fd0058ff
    	VADDPD X23, X15, X16          // 62a1850858c7
    	VADDPD Y31, Y16, Y15          // 6211fd2058ff
    	VADDPD Y23, Y15, Y16          // 62a1852858c7
    	VADDPD Z31, Z16, Z15          // 6211fd4058ff
    	VADDPD Z23, Z15, Z16          // 62a1854858c7
    	VGATHERQPD (DX)(X16*1),K1,X31 // 6262fd01933c02
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    #define AA0 Y0
    #define AA1 Y5
    #define AA2 Y6
    #define AA3 Y7
    #define BB0 Y14
    #define BB1 Y9
    #define BB2 Y10
    #define BB3 Y11
    #define CC0 Y12
    #define CC1 Y13
    #define CC2 Y8
    #define CC3 Y15
    #define DD0 Y4
    #define DD1 Y1
    #define DD2 Y2
    #define DD3 Y3
    #define TT0 DD3
    #define TT1 AA3
    #define TT2 BB3
    #define TT3 CC3
    // ChaCha20 constants
    DATA ·chacha20Constants<>+0x00(SB)/4, $0x61707865
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    	YxmEvex       // YxrEvex+Ym
    	Yxvm          // VSIB vector array; vm32x/vm64x
    	YxvmEvex      // Yxvm which permits High-16 X register as index.
    	YyrEvexMulti4 // [ Y<n> - Y<n+3> ]; multisource YyrEvex
    	Yyr           // Y0..Y15
    	YyrEvex       // Y0..Y31
    	Yym
    	YymEvex   // YyrEvex+Ym
    	Yyvm      // VSIB vector array; vm32y/vm64y
    	YyvmEvex  // Yyvm which permits High-16 Y register as index.
    	YzrMulti4 // [ Z<n> - Z<n+3> ]; multisource YzrEvex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top