Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 695 for tmp2 (0.13 sec)

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

    	accP3.fromP1xP1(&accP1xP1)
    	accP1xP1.AddAffine(accP3, &tmp2)
    	accP3.fromP1xP1(&accP1xP1)
    	accP1xP1.AddAffine(accP3, &tmp3)
    	accP3.fromP1xP1(&accP1xP1)
    
    	if accP3.Equal(I) != 1 {
    		t.Errorf("Consistency check on ProjLookupTable.SelectInto failed!  %x %x %x", tmp1, tmp2, tmp3)
    	}
    }
    
    func TestNafLookupTable5(t *testing.T) {
    	var table nafLookupTable5
    	table.FromP3(B)
    
    	var tmp1, tmp2, tmp3, tmp4 projCached
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. src/image/jpeg/fdct.go

    		x3 := s[3]
    		x4 := s[4]
    		x5 := s[5]
    		x6 := s[6]
    		x7 := s[7]
    
    		tmp0 := x0 + x7
    		tmp1 := x1 + x6
    		tmp2 := x2 + x5
    		tmp3 := x3 + x4
    
    		tmp10 := tmp0 + tmp3
    		tmp12 := tmp0 - tmp3
    		tmp11 := tmp1 + tmp2
    		tmp13 := tmp1 - tmp2
    
    		tmp0 = x0 - x7
    		tmp1 = x1 - x6
    		tmp2 = x2 - x5
    		tmp3 = x3 - x4
    
    		s[0] = (tmp10 + tmp11 - 8*centerJSample) << pass1Bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 23:18:37 UTC 2019
    - 6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/partitioned-topological-sort.mlir

    }
    // CHECK-NEXT: %[[CONST:.*]] = "tfl.pseudo_const"()
    // CHECK-NEXT: %[[TMP1:.*]] = tfl.add %[[CONST]], %[[CONST]]
    // CHECK-NEXT: %[[TMP2:.*]] = "tf.If"(%[[TMP1]], %[[TMP1]])
    // CHECK-NEXT: %[[TMP3:.*]] = tfl.add %[[CONST]], %[[TMP2]]
    // CHECK-NEXT: %[[TMP4:.*]] = "tf.AddV2"(%[[TMP2]], %[[TMP2]])
    // CHECK-NEXT: %[[RESULT:.*]] = tfl.add %[[TMP3]], %[[TMP4]]
    // CHECK-NEXT: return %[[RESULT]]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 19 22:33:49 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/control_edges.mlir

      %tmp0, %ctl0 = tfl.control_node controls "tfl.neg"(%arg0): (tensor<1xf32>) -> tensor<1xf32>
      %tmp1, %ctl1 = tfl.control_node controls "tfl.neg"(%tmp0): (tensor<1xf32>) -> tensor<1xf32>
      %tmp2, %ctl2 = tfl.control_node controls "tfl.neg"(%tmp1): (tensor<1xf32>) -> tensor<1xf32>
      %tmp3, %ctl3 = tfl.control_node controls "tfl.neg"(%tmp2): (tensor<1xf32>) -> tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 14 21:40:53 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

    // CHECK-NEXT: %[[CONST:.*]] = "tfl.pseudo_const"()
    // CHECK-NEXT: %[[TMP1:.*]] = tfl.add %[[CONST]], %[[CONST]]
    // CHECK-NEXT: %[[TMP2:.*]], %[[SEQ1:.*]] = tfl.control_node(%[[SEQ0]]) controls "tfl.add"(%[[VAR]], %[[TMP1]])
    // CHECK-NEXT: %[[TMP3:.*]] = tfl.add %[[TMP2]], %[[TMP1]]
    // CHECK-NEXT: %[[TMP4:.*]], %[[SEQ2:.*]] = tfl.control_node(%[[SEQ1]]) controls "tfl.while"(%[[TMP3]]) ({
    // CHECK-NEXT:   ^bb0(%[[ARG_COND:.*]]: tensor<1xf32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 10:45:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/scalarmult.go

    	tmp1.Double(tmp2)    // tmp1 =  4*v in P1xP1 coords
    	tmp2.FromP1xP1(tmp1) // tmp2 =  4*v in P2 coords
    	tmp1.Double(tmp2)    // tmp1 =  8*v in P1xP1 coords
    	tmp2.FromP1xP1(tmp1) // tmp2 =  8*v in P2 coords
    	tmp1.Double(tmp2)    // tmp1 = 16*v in P1xP1 coords
    	v.fromP1xP1(tmp1)    // now v = 16*(odd components)
    
    	// Accumulate the even components
    	for i := 0; i < 64; i += 2 {
    		basepointTable[i/2].SelectInto(multiple, digits[i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  7. misc/cgo/gmp/pi.go

    	"fmt"
    	"runtime"
    )
    
    var (
    	tmp1  = big.NewInt(0)
    	tmp2  = big.NewInt(0)
    	numer = big.NewInt(1)
    	accum = big.NewInt(0)
    	denom = big.NewInt(1)
    	ten   = big.NewInt(10)
    )
    
    func extractDigit() int64 {
    	if big.CmpInt(numer, accum) > 0 {
    		return -1
    	}
    	tmp1.Lsh(numer, 1).Add(tmp1, numer).Add(tmp1, accum)
    	big.DivModInt(tmp1, tmp2, tmp1, denom)
    	tmp2.Add(tmp2, numer)
    	if big.CmpInt(tmp2, denom) >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 22:32:35 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. test/fixedbugs/issue23188.go

    	// carried out one at a time. The operands of an index
    	// expression include both the array and the index. So this
    	// evaluates as
    	//   tmp1 := arr
    	//   tmp2 := len(arr) - 1
    	//   tmp3 := len(arr)
    	//   arr = arr[:tmp3-1]
    	//   tmp1[tmp2] = 3
    	arr, arr[len(arr)-1] = arr[:len(arr)-1], 3
    
    	if len(arr) != 1 || arr[0] != 1 || arr[:2][1] != 3 {
    		panic(arr)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 10 21:30:26 UTC 2018
    - 943 bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalarmult_test.go

    		}
    
    		// Set p = (16^2)*p = 256*p = 2^8*p
    		tmp2.FromP3(tmp3)
    		for j := 0; j < 7; j++ {
    			tmp1.Double(tmp2)
    			tmp2.FromP1xP1(tmp1)
    		}
    		tmp1.Double(tmp2)
    		tmp3.fromP1xP1(tmp1)
    		checkOnCurve(t, tmp3)
    	}
    }
    
    func TestScalarMultMatchesBaseMult(t *testing.T) {
    	scalarMultMatchesBaseMult := func(x Scalar) bool {
    		var p, q Point
    		p.ScalarMult(&x, B)
    		q.ScalarBaseMult(&x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    # external linker.
    
    mkdir tmp1
    mkdir tmp2
    mkdir tmp3
    mkdir tmp4
    mkdir tmp5
    
    # First build: no external linking expected
    go build -ldflags=-tmpdir=tmp1 -o $devnull ./noUseOfCgo &
    
    # Second build: using only "runtime/cgo", expect internal linking.
    go build -ldflags=-tmpdir=tmp2 -o $devnull ./usesInternalCgo &
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top