Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for x7 (0.11 sec)

  1. src/runtime/preempt_386.s

    	MOVUPS X0, 28(SP)
    	MOVUPS X1, 44(SP)
    	MOVUPS X2, 60(SP)
    	MOVUPS X3, 76(SP)
    	MOVUPS X4, 92(SP)
    	MOVUPS X5, 108(SP)
    	MOVUPS X6, 124(SP)
    	MOVUPS X7, 140(SP)
    	#endif
    	CALL ·asyncPreempt2(SB)
    	#ifndef GO386_softfloat
    	MOVUPS 140(SP), X7
    	MOVUPS 124(SP), X6
    	MOVUPS 108(SP), X5
    	MOVUPS 92(SP), X4
    	MOVUPS 76(SP), X3
    	MOVUPS 60(SP), X2
    	MOVUPS 44(SP), X1
    	MOVUPS 28(SP), X0
    	#endif
    	MOVL 24(SP), DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 824 bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64error.s

    	VPGATHERQQ Y2, (BP)(X7*2), Y2   // ERROR "mask, index, and destination registers should be distinct"
    	VPGATHERQQ Y7, (BP)(X2*2), Y2   // ERROR "mask, index, and destination registers should be distinct"
    	VPGATHERDQ X2, 664(X2*8), X2    // ERROR "mask, index, and destination registers should be distinct"
    	VPGATHERDQ X2, 664(X2*8), X7    // ERROR "mask, 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/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    		x1, x5, x9, x13 = quarterRound(x1, x5, x9, x13)
    		x2, x6, x10, x14 = quarterRound(x2, x6, x10, x14)
    		x3, x7, x11, x15 = quarterRound(x3, x7, x11, x15)
    
    		// Column round.
    		x0, x5, x10, x15 = quarterRound(x0, x5, x10, x15)
    		x1, x6, x11, x12 = quarterRound(x1, x6, x11, x12)
    		x2, x7, x8, x13 = quarterRound(x2, x7, x8, x13)
    		x3, x4, x9, x14 = quarterRound(x3, x4, x9, x14)
    	}
    
    	_ = out[31] // bounds check elimination hint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/p256_fiat64.go

    	x6, x5 = bits.Mul64(x4, arg2[3])
    	var x7 uint64
    	var x8 uint64
    	x8, x7 = bits.Mul64(x4, arg2[2])
    	var x9 uint64
    	var x10 uint64
    	x10, x9 = bits.Mul64(x4, arg2[1])
    	var x11 uint64
    	var x12 uint64
    	x12, x11 = bits.Mul64(x4, arg2[0])
    	var x13 uint64
    	var x14 uint64
    	x13, x14 = bits.Add64(x12, x9, uint64(0x0))
    	var x15 uint64
    	var x16 uint64
    	x15, x16 = bits.Add64(x10, x7, uint64(p256Uint1(x14)))
    	var x17 uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  5. src/internal/chacha8rand/chacha8_amd64.s

    	QR(X1, X5, X9, X13, X15)
    	MOVOU (15*16)(BX), X15 // reload X15; temp now X4
    	QR(X2, X6, X10, X14, X4)
    	QR(X3, X7, X11, X15, X4)
    
    	QR(X0, X5, X10, X15, X4)
    	MOVOU X15, (15*16)(BX) // save X15
    	QR(X1, X6, X11, X12, X4)
    	MOVOU (4*16)(BX), X4  // reload X4; temp now X15
    	QR(X2, X7, X8, X13, X15)
    	QR(X3, X4, X9, X14, X15)
    
    	DECL DX
    	JNZ loop
    
    	// Store interlaced blocks back to output buffer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/init0.go

    // cycles via functions
    
    var x4 = x5
    var x5 /* ERROR "initialization cycle for x5" */ = f1()
    func f1() int { return x5*10 }
    
    var x6, x7 /* ERROR "initialization cycle" */ = f2()
    var x8 = x7
    func f2() (int, int) { return f3() + f3(), 0 }
    func f3() int { return x8 }
    
    // cycles via function literals
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/crypto/md5/md5block.go

    		x2 := byteorder.LeUint32(q[4*0x2:])
    		x3 := byteorder.LeUint32(q[4*0x3:])
    		x4 := byteorder.LeUint32(q[4*0x4:])
    		x5 := byteorder.LeUint32(q[4*0x5:])
    		x6 := byteorder.LeUint32(q[4*0x6:])
    		x7 := byteorder.LeUint32(q[4*0x7:])
    		x8 := byteorder.LeUint32(q[4*0x8:])
    		x9 := byteorder.LeUint32(q[4*0x9:])
    		xa := byteorder.LeUint32(q[4*0xa:])
    		xb := byteorder.LeUint32(q[4*0xb:])
    		xc := byteorder.LeUint32(q[4*0xc:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/fiat/p224_fiat64.go

    	x6, x5 = bits.Mul64(x4, arg2[3])
    	var x7 uint64
    	var x8 uint64
    	x8, x7 = bits.Mul64(x4, arg2[2])
    	var x9 uint64
    	var x10 uint64
    	x10, x9 = bits.Mul64(x4, arg2[1])
    	var x11 uint64
    	var x12 uint64
    	x12, x11 = bits.Mul64(x4, arg2[0])
    	var x13 uint64
    	var x14 uint64
    	x13, x14 = bits.Add64(x12, x9, uint64(0x0))
    	var x15 uint64
    	var x16 uint64
    	x15, x16 = bits.Add64(x10, x7, uint64(p224Uint1(x14)))
    	var x17 uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 43.2K bytes
    - Viewed (0)
  9. src/runtime/preempt_amd64.s

    	JE 2(PC)
    	#endif
    	VZEROUPPER
    	#endif
    	MOVUPS X0, 112(SP)
    	MOVUPS X1, 128(SP)
    	MOVUPS X2, 144(SP)
    	MOVUPS X3, 160(SP)
    	MOVUPS X4, 176(SP)
    	MOVUPS X5, 192(SP)
    	MOVUPS X6, 208(SP)
    	MOVUPS X7, 224(SP)
    	MOVUPS X8, 240(SP)
    	MOVUPS X9, 256(SP)
    	MOVUPS X10, 272(SP)
    	MOVUPS X11, 288(SP)
    	MOVUPS X12, 304(SP)
    	MOVUPS X13, 320(SP)
    	MOVUPS X14, 336(SP)
    	MOVUPS X15, 352(SP)
    	CALL ·asyncPreempt2(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm_amd64.s

    	MOVOU yout(16*0), X2
    	MOVOU yout(16*1), X3
    	MOVOU zout(16*0), X4
    	MOVOU zout(16*1), X5
    
    	MOVL BX, X6
    	MOVL CX, X7
    
    	PXOR X8, X8
    	PCMPEQL X9, X9
    
    	PSHUFD $0, X6, X6
    	PSHUFD $0, X7, X7
    
    	PCMPEQL X8, X6
    	PCMPEQL X8, X7
    
    	MOVOU X6, X15
    	PANDN X9, X15
    
    	MOVOU x1in(16*0), X9
    	MOVOU x1in(16*1), X10
    	MOVOU y1in(16*0), X11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
Back to top