Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 284 for x1 (0.04 sec)

  1. src/crypto/internal/edwards25519/scalar_fiat.go

    //
    //   twos_complement_eval z = let x1 := z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) in
    //
    //                            if x1 & (2^256-1) < 2^255 then x1 & (2^256-1) else (x1 & (2^256-1)) - 2^256
    
    package edwards25519
    
    import "math/bits"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
  2. test/fixedbugs/bug246.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "unsafe"
    
    func main() {
    	// works
    	addr := uintptr(0x234)
    	x1 := (*int)(unsafe.Pointer(addr))
    
    	// fails
    	x2 := (*int)(unsafe.Pointer(uintptr(0x234)))
    
    	if x1 != x2 {
    		println("mismatch", x1, x2)
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 407 bytes
    - Viewed (0)
  3. src/internal/bytealg/index_amd64.s

    _16_or_more:
    	CMPQ AX, $16
    	JA   _17_or_more
    	MOVOU (R8), X1
    	LEAQ -15(DI)(DX*1), DX
    loop16:
    	MOVOU (DI), X2
    	PCMPEQB X1, X2
    	PMOVMSKB X2, SI
    	CMPQ  SI, $0xffff
    	JE   success
    	ADDQ $1,DI
    	CMPQ DI,DX
    	JB loop16
    	JMP fail
    _17_or_more:
    	CMPQ AX, $31
    	JA   _32_or_more
    	LEAQ 1(DI)(DX*1), DX
    	SUBQ AX, DX
    	MOVOU -16(R8)(AX*1), X0
    	MOVOU (R8), X1
    loop17to31:
    	MOVOU (DI), X2
    	PCMPEQB X1,X2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:20:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. test/fixedbugs/issue7995b.dir/x2.go

    package main
    
    import "./x1"
    
    func main() {
    	s := x1.F(&x1.P)
    	if s != "100 100\n" {
    		println("BUG:", s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 15 19:34:53 UTC 2014
    - 110 bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/fiat/p256_fiat64.go

    //
    //   twos_complement_eval z = let x1 := z[0] + (z[1] << 64) + (z[2] << 128) + (z[3] << 192) in
    //
    //                            if x1 & (2^256-1) < 2^255 then x1 & (2^256-1) else (x1 & (2^256-1)) - 2^256
    
    package fiat
    
    import "math/bits"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  6. test/fixedbugs/issue13821b.go

    type B bool
    type B2 bool
    
    var b B
    var b2 B2
    var x1 = b && 1 < 2 // x1 has type B, not ideal bool
    var x2 = 1 < 2 && b // x2 has type B, not ideal bool
    var x3 = b && b2    // ERROR "mismatched types B and B2|incompatible types"
    var x4 = x1 && b2   // ERROR "mismatched types B and B2|incompatible types"
    var x5 = x2 && b2   // ERROR "mismatched types B and B2|incompatible types"
    var x6 = b2 && x1   // ERROR "mismatched types B2 and B|incompatible types"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 10 18:34:40 UTC 2020
    - 841 bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/LinearTransformation.java

       * {@code x} and {@code y} value pair.
       *
       * @since 20.0
       */
      public static final class LinearTransformationBuilder {
    
        private final double x1;
        private final double y1;
    
        private LinearTransformationBuilder(double x1, double y1) {
          this.x1 = x1;
          this.y1 = y1;
        }
    
        /**
         * Finish building an instance which also maps {@code x = x2} to {@code y = y2}. These values
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. src/math/pow.go

    			// so the final call to Ldexp will produce under/overflow (0/Inf)
    			ae += xe
    			break
    		}
    		if i&1 == 1 {
    			a1 *= x1
    			ae += xe
    		}
    		x1 *= x1
    		xe <<= 1
    		if x1 < .5 {
    			x1 += x1
    			xe--
    		}
    	}
    
    	// ans = a1*2**ae
    	// if y < 0 { ans = 1 / ans }
    	// but in the opposite order
    	if y < 0 {
    		a1 = 1 / a1
    		ae = -ae
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:10:58 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/runtime/memmove_386.s

    move_17through32:
    	MOVOU	(SI), X0
    	MOVOU	-16(SI)(BX*1), X1
    	MOVOU	X0, (DI)
    	MOVOU	X1, -16(DI)(BX*1)
    	RET
    move_33through64:
    	MOVOU	(SI), X0
    	MOVOU	16(SI), X1
    	MOVOU	-32(SI)(BX*1), X2
    	MOVOU	-16(SI)(BX*1), X3
    	MOVOU	X0, (DI)
    	MOVOU	X1, 16(DI)
    	MOVOU	X2, -32(DI)(BX*1)
    	MOVOU	X3, -16(DI)(BX*1)
    	RET
    move_65through128:
    	MOVOU	(SI), X0
    	MOVOU	16(SI), X1
    	MOVOU	32(SI), X2
    	MOVOU	48(SI), X3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  10. src/crypto/elliptic/params.go

    func (curve *CurveParams) Double(x1, y1 *big.Int) (*big.Int, *big.Int) {
    	// If there is a dedicated constant-time implementation for this curve operation,
    	// use that instead of the generic one.
    	if specific, ok := matchesSpecificCurve(curve); ok {
    		return specific.Double(x1, y1)
    	}
    	panicIfNotOnCurve(curve, x1, y1)
    
    	z1 := zForAffine(x1, y1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top