Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 271 for t0 (0.02 sec)

  1. src/crypto/internal/nistec/fiat/p256_invert.go

    	for s := 1; s < 16; s++ {
    		t1.Square(t1)
    	}
    	t0.Mul(t0, t1)
    	for s := 0; s < 15; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	for s := 0; s < 17; s++ {
    		t0.Square(t0)
    	}
    	t0.Mul(x, t0)
    	for s := 0; s < 143; s++ {
    		t0.Square(t0)
    	}
    	t0.Mul(z, t0)
    	for s := 0; s < 47; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	for s := 0; s < 2; s++ {
    		z.Square(z)
    	}
    	z.Mul(x, z)
    
    	return e.Set(z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_amd64.s

    	MULQ p256ordK0<>(SB)
    	MOVQ AX, t0
    
    	MOVQ p256ord<>+0x00(SB), AX
    	MULQ t0
    	ADDQ AX, acc0
    	ADCQ $0, DX
    	MOVQ DX, t1
    
    	MOVQ p256ord<>+0x08(SB), AX
    	MULQ t0
    	ADDQ t1, acc1
    	ADCQ $0, DX
    	ADDQ AX, acc1
    
    	MOVQ t0, t1
    	ADCQ DX, acc2
    	ADCQ $0, t1
    	SUBQ t0, acc2
    	SBBQ $0, t1
    
    	MOVQ t0, AX
    	MOVQ t0, DX
    	MOVQ t0, acc0
    	SHLQ $32, AX
    	SHRQ $32, DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  3. src/html/template/clone_test.go

    	}
    
    	// Clone t0 as t3, but do not execute t3 yet.
    	t3 := Must(t0.Clone())
    	Must(t3.Parse(`{{define "lhs"}} <style> {{end}}`))
    	Must(t3.Parse(`{{define "rhs"}} </style> {{end}}`))
    
    	// Complete t0.
    	Must(t0.Parse(`{{define "lhs"}} ( {{end}}`))
    	Must(t0.Parse(`{{define "rhs"}} ) {{end}}`))
    
    	// Clone t0 as t4. Redefining the "lhs" template should not fail.
    	t4 := Must(t0.Clone())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/methodsets.go

    package methodsets
    
    type T0 struct {}
    
    func (T0) v0() {}
    func (*T0) p0() {}
    
    type T1 struct {} // like T0 with different method names
    
    func (T1) v1() {}
    func (*T1) p1() {}
    
    type T2 interface {
    	v2()
    	p2()
    }
    
    type T3 struct {
    	T0
    	*T1
    	T2
    }
    
    // Method expressions
    func _() {
    	var (
    		_ func(T0) = T0.v0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p384.go

    	z3.Sub(z3, t0)                               // Z3 := Z3 - t0
    	t3.Add(z3, z3)                               // t3 := Z3 + Z3
    	z3.Add(z3, t3)                               // Z3 := Z3 + t3
    	t3.Add(t0, t0)                               // t3 := t0 + t0
    	t0.Add(t3, t0)                               // t0 := t3 + t0
    	t0.Sub(t0, t2)                               // t0 := t0 - t2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_arm64.s

    	ADDS	acc2<<32, acc3, acc3
    	LSR	$32, acc2, t0
    	MUL	acc2, const1, t1
    	UMULH	acc2, const1, acc2
    	ADCS	t0, acc0
    	ADCS	t1, acc1
    	ADC	$0, acc2
    	// y[3] * x
    	MUL	y3, x0, t0
    	ADDS	t0, acc3
    	UMULH	y3, x0, t1
    
    	MUL	y3, x1, t0
    	ADCS	t0, acc4
    	UMULH	y3, x1, t2
    
    	MUL	y3, x2, t0
    	ADCS	t0, acc5
    	UMULH	y3, x2, t3
    
    	MUL	y3, x3, t0
    	ADCS	t0, acc6
    	UMULH	y3, x3, hlp0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue1435.go

    		{call: "Setegid(0)", fn: func() error { return syscall.Setegid(0) }, filter: "Gid:", expect: "\t0\t0\t0\t0"},
    
    		{call: "Seteuid(1)", fn: func() error { return syscall.Seteuid(1) }, filter: "Uid:", expect: "\t0\t1\t0\t1"},
    		{call: "Setuid(0)", fn: func() error { return syscall.Setuid(0) }, filter: "Uid:", expect: "\t0\t0\t0\t0"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 21:31:41 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. test/alias2.go

    func (A0) m1()  {} // ERROR "T0\.m1 already declared|redefinition of .m1."
    func (A0) m1()  {} // ERROR "T0\.m1 already declared|redefinition of .m1."
    func (A0) m2()  {}
    
    // Type aliases and the original type name can be used interchangeably.
    var _ A0 = T0{}
    var _ T0 = A0{}
    
    // But aliases and original types cannot be used with new types based on them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:09:14 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/runtime/sys_freebsd_riscv64.s

    	MOV	$CLOCK_MONOTONIC, A0
    	MOV	$8(X2), A1
    	MOV	$SYS_clock_gettime, T0
    	ECALL
    	MOV	8(X2), T0	// sec
    	MOV	16(X2), T1	// nsec
    
    	// sec is in T0, nsec in T1
    	// return nsec in T0
    	MOV	$1000000000, T2
    	MUL	T2, T0
    	ADD	T1, T0
    
    	MOV	T0, ret+0(FP)
    	RET
    
    // func asmSigaction(sig uintptr, new, old *sigactiont) int32
    TEXT runtime·asmSigaction(SB),NOSPLIT|NOFRAME,$0
    	MOV	sig+0(FP), A0		// arg 1 sig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. src/crypto/aes/gcm_amd64.s

    	MOVOU (16*0)(KS), B0
    	MOVOU (16*1)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*2)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*3)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*4)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*5)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*6)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*7)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*8)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*9)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*10)(KS), T0
    	CMPQ NR, $12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top