Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for L3 (0.02 sec)

  1. src/crypto/internal/edwards25519/field/_asm/fe_amd64_asm.go

    	l2 := namedComponent{a.Field("l2"), "l2"}
    	l3 := namedComponent{a.Field("l3"), "l3"}
    	l4 := namedComponent{a.Field("l4"), "l4"}
    
    	// r0 = l0×l0 + 19×2×(l1×l4 + l2×l3)
    	r0 := uint128{"r0", GP64(), GP64()}
    	mul64(r0, 1, l0, l0)
    	addMul64(r0, 38, l1, l4)
    	addMul64(r0, 38, l2, l3)
    
    	// r1 = 2×l0×l1 + 19×2×l2×l4 + 19×l3×l3
    	r1 := uint128{"r1", GP64(), GP64()}
    	mul64(r1, 2, l0, l1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/labels.go

    		if x == 1 {
    			continue L2 /* ERROR "invalid continue label L2" */
    		}
    		goto L2
    	}
    
    L3:
    	switch {
    	case x > 10:
    		if x == 11 {
    			break L3
    		}
    		if x == 12 {
    			continue L3 /* ERROR "invalid continue label L3" */
    		}
    		goto L3
    	}
    
    L4:
    	if true {
    		if x == 13 {
    			break L4 /* ERROR "invalid break label L4" */
    		}
    		if x == 14 {
    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. test/typeparam/list2.go

    	l3 = _New[int]()
    	l3.PushBackList(l1)
    	checkList(l3, []interface{}{1, 2, 3})
    	l3.PushBackList(l3)
    	checkList(l3, []interface{}{1, 2, 3, 1, 2, 3})
    
    	l3 = _New[int]()
    	l3.PushFrontList(l1)
    	checkList(l3, []interface{}{1, 2, 3})
    	l3.PushFrontList(l3)
    	checkList(l3, []interface{}{1, 2, 3, 1, 2, 3})
    
    	l3 = _New[int]()
    	l1.PushBackList(l3)
    	checkList(l1, []interface{}{1, 2, 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)
  4. src/crypto/internal/edwards25519/field/fe.go

    	t := m & (v.l0 ^ u.l0)
    	v.l0 ^= t
    	u.l0 ^= t
    	t = m & (v.l1 ^ u.l1)
    	v.l1 ^= t
    	u.l1 ^= t
    	t = m & (v.l2 ^ u.l2)
    	v.l2 ^= t
    	u.l2 ^= t
    	t = m & (v.l3 ^ u.l3)
    	v.l3 ^= t
    	u.l3 ^= t
    	t = m & (v.l4 ^ u.l4)
    	v.l4 ^= t
    	u.l4 ^= t
    }
    
    // IsNegative returns 1 if v is negative, and 0 otherwise.
    func (v *Element) IsNegative() int {
    	return int(v.Bytes()[0] & 1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. 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)
  6. tools/bug-report/pkg/cluster/cluster_test.go

    							"in-test1",
    						},
    						Labels: map[string]string{
    							"l3": "lv3",
    						},
    						Annotations: map[string]string{
    							"a3": "av3",
    						},
    					},
    					{
    						Namespaces: []string{
    							"test",
    						},
    						Pods: []string{
    							"in-test1",
    						},
    						Labels: map[string]string{
    							"l3": "lv3",
    						},
    						Annotations: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 17:23:32 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/prettify.css

    }.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)
  8. src/crypto/internal/edwards25519/field/fe_amd64.s

    	ADDQ   AX, R8
    	ADCQ   DX, DI
    
    	// r1 += 19×l3×l3
    	MOVQ   24(CX), AX
    	IMUL3Q $0x13, AX, AX
    	MULQ   24(CX)
    	ADDQ   AX, R8
    	ADCQ   DX, DI
    
    	// r2 = 2×l0×l2
    	MOVQ (CX), AX
    	SHLQ $0x01, AX
    	MULQ 16(CX)
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/MetadataProbe.java

                    dumpProperty(mv, type.getSystemPropertyKey());
                }
            }
            mv.visitInsn(RETURN);
            Label l3 = new Label();
            mv.visitLabel(l3);
            mv.visitLocalVariable("args", "[Ljava/lang/String;", null, l0, l3, 0);
            mv.visitMaxs(3, 1);
            mv.visitEnd();
        }
    
        private static void dumpProperty(MethodVisitor mv, String property) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/math/log_amd64.s

    	// s4 := s2 * s2
    	MOVAPD  X4, X5 // x1= k, x2= f, x3= s, x4= s2
    	MULSD   X5, X5 // x1= k, x2= f, x3= s, x4= s2, x5= s4
    	// t1 := s2 * (L1 + s4*(L3+s4*(L5+s4*L7)))
    	MOVSD   $L7, X6
    	MULSD   X5, X6
    	ADDSD   $L5, X6
    	MULSD   X5, X6
    	ADDSD   $L3, X6
    	MULSD   X5, X6
    	ADDSD   $L1, X6
    	MULSD   X6, X4 // x1= k, x2= f, x3= s, x4= t1, x5= s4
    	// t2 := s4 * (L2 + s4*(L4+s4*L6))
    	MOVSD   $L6, X6
    	MULSD   X5, X6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top