Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkLHS (0.17 sec)

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

    	checkOnCurve(t, B)
    }
    
    func TestAddSubNegOnBasePoint(t *testing.T) {
    	checkLhs, checkRhs := &Point{}, &Point{}
    
    	checkLhs.Add(B, B)
    	tmpP2 := new(projP2).FromP3(B)
    	tmpP1xP1 := new(projP1xP1).Double(tmpP2)
    	checkRhs.fromP1xP1(tmpP1xP1)
    	if checkLhs.Equal(checkRhs) != 1 {
    		t.Error("B + B != [2]B")
    	}
    	checkOnCurve(t, checkLhs, checkRhs)
    
    	checkLhs.Subtract(B, B)
    	Bneg := new(Point).Negate(B)
    	checkRhs.Add(B, Bneg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/stmt.go

    	// in that case, do not call typecheck back, or it will cycle.
    	// if the variable has a type (ntype) then typechecking
    	// will not look at defn, so it is okay (and desirable,
    	// so that the conversion below happens).
    
    	checkLHS := func(i int, typ *types.Type) {
    		if n := lhs[i]; typ != nil && ir.DeclaredBy(n, stmt) && n.Type() == nil {
    			base.Assertf(typ.Kind() == types.TNIL, "unexpected untyped nil")
    			n.SetType(defaultType(typ))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
Back to top