Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for zsqr (0.13 sec)

  1. src/crypto/internal/nistec/p256_asm_arm64.s

    #define y2in(off)  (32*0 + 8 + off)(RSP)
    #define s2(off)    (32*1 + 8 + off)(RSP)
    #define z1sqr(off) (32*2 + 8 + off)(RSP)
    #define h(off)	   (32*3 + 8 + off)(RSP)
    #define r(off)	   (32*4 + 8 + off)(RSP)
    #define hsqr(off)  (32*5 + 8 + off)(RSP)
    #define rsqr(off)  (32*6 + 8 + off)(RSP)
    #define hcub(off)  (32*7 + 8 + off)(RSP)
    
    #define z2sqr(off) (32*8 + 8 + off)(RSP)
    #define s1(off) (32*9 + 8 + off)(RSP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_amd64.s

    #undef s2
    #undef u1
    #undef u2
    #undef z1sqr
    #undef z2sqr
    #undef h
    #undef r
    #undef hsqr
    #undef rsqr
    #undef hcub
    #undef rptr
    /* ---------------------------------------*/
    #define x(off) (32*0 + off)(SP)
    #define y(off) (32*1 + off)(SP)
    #define z(off) (32*2 + off)(SP)
    
    #define s(off)	(32*3 + off)(SP)
    #define m(off)	(32*4 + off)(SP)
    #define zsqr(off) (32*5 + off)(SP)
    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/encoding/xml/read_test.go

    		BPtr:         &zBool,
    		Bs:           []bool{zBool},
    		BPtrs:        []*bool{&zBool},
    		Bytes:        []byte{},
    		BytesPtr:     &zBytes,
    		SPtr:         &zStr,
    		Ss:           []string{zStr},
    		SPtrs:        []*string{&zStr},
    		Children:     []Child{{}},
    		ChildPtr:     new(Child),
    		ChildToEmbed: ChildToEmbed{},
    	}
    	if !reflect.DeepEqual(v, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  4. src/math/big/nat.go

    				// to check performance before making changes.
    				zz = zz.sqr(z)
    				zz, z = z, zz
    				z = z.trunc(z, logM)
    
    				zz = zz.sqr(z)
    				zz, z = z, zz
    				z = z.trunc(z, logM)
    
    				zz = zz.sqr(z)
    				zz, z = z, zz
    				z = z.trunc(z, logM)
    
    				zz = zz.sqr(z)
    				zz, z = z, zz
    				z = z.trunc(z, logM)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. src/math/big/int.go

    // Mul sets z to the product x*y and returns z.
    func (z *Int) Mul(x, y *Int) *Int {
    	// x * y == x * y
    	// x * (-y) == -(x * y)
    	// (-x) * y == -(x * y)
    	// (-x) * (-y) == x * y
    	if x == y {
    		z.abs = z.abs.sqr(x.abs)
    		z.neg = false
    		return z
    	}
    	z.abs = z.abs.mul(x.abs, y.abs)
    	z.neg = len(z.abs) > 0 && x.neg != y.neg // 0 has no sign
    	return z
    }
    
    // MulRange sets z to the product of all integers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	MOVD $32, R17
    
    	MOVD $p256mul<>+0x00(SB), CPOOL
    
    	LXVD2X (R0)(x_ptr), X0
    	LXVD2X (R16)(x_ptr), X1
    
    	XXPERMDI X0, X0, $2, X0
    	XXPERMDI X1, X1, $2, X1
    
    sqrLoop:
    	// Sqr uses same value for both
    
    	VOR	X0, X0, Y0
    	VOR	X1, X1, Y1
    
    	LXVD2X (R16)(CPOOL), P1
    	LXVD2X (R0)(CPOOL), P0
    
    	CALL p256MulInternal<>(SB)
    
    	MOVD	n+16(FP), N
    	ADD	$-1, N
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. src/math/big/float.go

    	// and y which is often the case (e.g., if all floats
    	// have the same precision).
    	// TODO(gri) Optimize this for the common case.
    
    	e := int64(x.exp) + int64(y.exp)
    	if x == y {
    		z.mant = z.mant.sqr(x.mant)
    	} else {
    		z.mant = z.mant.mul(x.mant, y.mant)
    	}
    	z.setExpAndRound(e-fnorm(z.mant), 0)
    }
    
    // z = x / y, ignoring signs of x and y for the division
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    expression:
    </p>
    
    <pre>
    var a, b, c = f() + v(), g(), sqr(u()) + v()
    
    func f() int        { return c }
    func g() int        { return a }
    func sqr(x int) int { return x*x }
    
    // functions u and v are independent of all other variables and functions
    </pre>
    
    <p>
    The function calls happen in the order
    <code>u()</code>, <code>sqr()</code>, <code>v()</code>,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. doc/go_spec.html

    expression:
    </p>
    
    <pre>
    var a, b, c = f() + v(), g(), sqr(u()) + v()
    
    func f() int        { return c }
    func g() int        { return a }
    func sqr(x int) int { return x*x }
    
    // functions u and v are independent of all other variables and functions
    </pre>
    
    <p>
    The function calls happen in the order
    <code>u()</code>, <code>sqr()</code>, <code>v()</code>,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top