Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 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. 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/container/list/list_test.go

    	l3 = New()
    	l3.PushBackList(l1)
    	checkList(t, l3, []any{1, 2, 3})
    	l3.PushBackList(l3)
    	checkList(t, l3, []any{1, 2, 3, 1, 2, 3})
    
    	l3 = New()
    	l3.PushFrontList(l1)
    	checkList(t, l3, []any{1, 2, 3})
    	l3.PushFrontList(l3)
    	checkList(t, l3, []any{1, 2, 3, 1, 2, 3})
    
    	l3 = New()
    	l1.PushBackList(l3)
    	checkList(t, l1, []any{1, 2, 3})
    	l1.PushFrontList(l3)
    	checkList(t, l1, []any{1, 2, 3})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  5. test/typeparam/listimp2.dir/main.go

    	l3 = a.New[int]()
    	l3.PushBackList(l1)
    	checkList(l3, []interface{}{1, 2, 3})
    	l3.PushBackList(l3)
    	checkList(l3, []interface{}{1, 2, 3, 1, 2, 3})
    
    	l3 = a.New[int]()
    	l3.PushFrontList(l1)
    	checkList(l3, []interface{}{1, 2, 3})
    	l3.PushFrontList(l3)
    	checkList(l3, []interface{}{1, 2, 3, 1, 2, 3})
    
    	l3 = a.New[int]()
    	l1.PushBackList(l3)
    	checkList(l1, []interface{}{1, 2, 3})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/code5.txt

    -- input --
    L1
    L2
    L3
    L4
    L5
    - L6 {
    	L7
    }
    L8
    -- gofmt --
    L1
    L2
    L3
    L4
    L5
      - L6 {
        L7
        }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 96 bytes
    - Viewed (0)
  7. test/label1.go

    	for {
    		if x == 1 {
    			continue L2 // ERROR "invalid continue label .*L2"
    		}
    	}
    
    L3:
    	switch {
    	case x > 10:
    		if x == 11 {
    			break L3
    		}
    		if x == 12 {
    			continue L3 // ERROR "invalid continue label .*L3|continue is not in a loop$"
    		}
    		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: Sat Nov 28 02:31:54 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top