Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for L1 (0.05 sec)

  1. src/crypto/internal/edwards25519/field/fe.go

    	c := (v.l0 + 19) >> 51
    	c = (v.l1 + c) >> 51
    	c = (v.l2 + c) >> 51
    	c = (v.l3 + c) >> 51
    	c = (v.l4 + c) >> 51
    
    	// If v < 2^255 - 19 and c = 0, this will be a no-op. Otherwise, it's
    	// effectively applying the reduction identity to the carry.
    	v.l0 += 19 * c
    
    	v.l1 += v.l0 >> 51
    	v.l0 = v.l0 & maskLow51Bits
    	v.l2 += v.l1 >> 51
    	v.l1 = v.l1 & maskLow51Bits
    	v.l3 += v.l2 >> 51
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/labels.go

    	}
    
    	for {
    		if x == 19 {
    			break L1 /* ERROR "invalid break label L1" */
    		}
    		if x == 20 {
    			continue L1 /* ERROR "invalid continue label L1" */
    		}
    		if x == 21 {
    			goto L1
    		}
    	}
    }
    
    // Additional tests not in the original files.
    
    func f2() {
    L1 /* ERROR "label L1 declared and not used" */ :
    	if x == 0 {
    		for {
    			continue L1 /* ERROR "invalid continue label L1" */
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/fe_generic.go

    	// r2 = l0×l2 + l1×l1 + l2×l0 + 19×(l3×l4 + l4×l3) = 2×l0×l2 + l1×l1 + 19×2×l3×l4
    	r2 := mul64(l0_2, l2)
    	r2 = addMul64(r2, l1, l1)
    	r2 = addMul64(r2, l3_38, l4)
    
    	// r3 = l0×l3 + l1×l2 + l2×l1 + l3×l0 + 19×l4×l4 = 2×l0×l3 + 2×l1×l2 + 19×l4×l4
    	r3 := mul64(l0_2, l3)
    	r3 = addMul64(r3, l1_2, l2)
    	r3 = addMul64(r3, l4_19, l4)
    
    	// r4 = l0×l4 + l1×l3 + l2×l2 + l3×l1 + l4×l0 = 2×l0×l4 + 2×l1×l3 + l2×l2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/field/_asm/fe_amd64_asm.go

    	mul64(r1, 2, l0, l1)
    	addMul64(r1, 38, l2, l4)
    	addMul64(r1, 19, l3, l3)
    
    	// r2 = = 2×l0×l2 + l1×l1 + 19×2×l3×l4
    	r2 := uint128{"r2", GP64(), GP64()}
    	mul64(r2, 2, l0, l2)
    	addMul64(r2, 1, l1, l1)
    	addMul64(r2, 38, l3, l4)
    
    	// r3 = = 2×l0×l3 + 2×l1×l2 + 19×l4×l4
    	r3 := uint128{"r3", GP64(), GP64()}
    	mul64(r3, 2, l0, l3)
    	addMul64(r3, 2, l1, l2)
    	addMul64(r3, 19, l4, l4)
    
    	// r4 = = 2×l0×l4 + 2×l1×l3 + l2×l2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/filter/filter_test.go

          c2: null
        p2:
          c3: null
      d2:
        p3:
          c4: null
          c5: null
        p4:
          c6: null
    `
    	testClusterResourcesLabels = `
    ns1/p1:
      l1: v1
      l2: v2
    ns1/p2:
      l1: v1
      l2: v22
      l3: v3
    ns1/p3:
      l1: v1
      l2: v2
      l3: v3
      l4: v4
    `
    	testClusterResourcesAnnotations = `
    ns1/p1:
      k2: v2
    ns1/p2:
      k1: v1
      k2: v2
      k3: v33
    ns1/p3:
      k1: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. test/typeparam/list2.go

    }
    
    func TestIssue4103() {
    	l1 := _New[int]()
    	l1.PushBack(1)
    	l1.PushBack(2)
    
    	l2 := _New[int]()
    	l2.PushBack(3)
    	l2.PushBack(4)
    
    	e := l1.Front()
    	l2.Remove(e) // l2 should not change because e is not an element of l2
    	if n := l2.Len(); n != 2 {
    		panic(fmt.Sprintf("l2.Len() = %d, want 2", n))
    	}
    
    	l1.InsertBefore(8, e)
    	if n := l1.Len(); n != 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultDependencySpecContainerTest.groovy

            then:
            container.dependencies*.displayName == [displayName]
    
            where:
            proj | lib  | displayName
            "p1" | "l1" | "project 'p1' library 'l1'"
            "p1" | null | "project 'p1'"
            null | "l1" | "library 'l1'"
        }
    
        def "throws IllegalDependencyNotation for project dependency spec with no project or library"() {
            when:
            container.project(null).library(null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/prettify.css

    eight:700}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:700}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 673 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

       //   (multiply_linear_by_lr ? clamp(-l1 * lr, linear, l1 * lr)
       //                            clamp(-l1, linear, l1)) - linear
       (TF_SubOp:$linear_clipped_minus_linear
         (ConstAttrIfThenElse
           $multiply_linear_by_lr,
           (Clamp $src_op,
             (TF_NegOp (TF_MulOp $l1, $lr)),
             (CreateTFReadVariableOp $src_op, $l1, $linear),
             (TF_MulOp $l1, $lr)
           ),
           (Clamp $src_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/field/fe_amd64.s

    	MOVQ AX, R10
    	MOVQ DX, R9
    
    	// r2 += l1×l1
    	MOVQ 8(CX), AX
    	MULQ 8(CX)
    	ADDQ AX, R10
    	ADCQ DX, R9
    
    	// r2 += 38×l3×l4
    	MOVQ   24(CX), AX
    	IMUL3Q $0x26, AX, AX
    	MULQ   32(CX)
    	ADDQ   AX, R10
    	ADCQ   DX, R9
    
    	// r3 = 2×l0×l3
    	MOVQ (CX), AX
    	SHLQ $0x01, AX
    	MULQ 24(CX)
    	MOVQ AX, R12
    	MOVQ DX, R11
    
    	// r3 += 2×l1×l2
    	MOVQ   8(CX), AX
    	IMUL3Q $0x02, AX, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top