Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 551 for tmp_ (0.03 sec)

  1. 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)
  2. 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)
  3. src/html/template/testdata/file1.tmpl

    Russ Cox <******@****.***> 1594052821 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 14 16:54:25 UTC 2020
    - 57 bytes
    - Viewed (0)
  4. src/html/template/testdata/tmpl2.tmpl

    Russ Cox <******@****.***> 1594052821 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 14 16:54:25 UTC 2020
    - 50 bytes
    - Viewed (0)
  5. src/runtime/memmove_arm.s

    _b4tail:				/* do remaining words if possible */
    	MOVW	savedts-4(SP), TS
    	ADD	$3, TS, TMP
    _b4loop:
    	CMP	TMP, TE
    	BLS	_b1tail
    
    	MOVW.W	-4(FROM), TMP1	/* pre-indexed */
    	MOVW.W	TMP1, -4(TE)	/* pre-indexed */
    	B	_b4loop
    
    _b1tail:				/* remaining bytes */
    	CMP	TE, TS
    	BEQ	_return
    
    	MOVBU.W	-1(FROM), TMP	/* pre-indexed */
    	MOVBU.W	TMP, -1(TE)	/* pre-indexed */
    	B	_b1tail
    
    _forward:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  6. src/html/template/testdata/tmpl1.tmpl

    Russ Cox <******@****.***> 1594052821 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 14 16:54:25 UTC 2020
    - 50 bytes
    - Viewed (0)
  7. src/text/template/testdata/tmpl1.tmpl

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 50 bytes
    - Viewed (0)
  8. src/text/template/testdata/tmpl2.tmpl

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 50 bytes
    - Viewed (0)
  9. src/html/template/testdata/file2.tmpl

    Russ Cox <******@****.***> 1594052821 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 14 16:54:25 UTC 2020
    - 76 bytes
    - Viewed (0)
  10. src/text/template/testdata/file1.tmpl

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 57 bytes
    - Viewed (0)
Back to top