Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 318 for rounds (0.1 sec)

  1. src/crypto/sha1/sha1block_amd64.s

    	ROUND2(BX, CX, DX, BP, AX, 39)
    
    	ROUND3(AX, BX, CX, DX, BP, 40)
    	ROUND3(BP, AX, BX, CX, DX, 41)
    	ROUND3(DX, BP, AX, BX, CX, 42)
    	ROUND3(CX, DX, BP, AX, BX, 43)
    	ROUND3(BX, CX, DX, BP, AX, 44)
    	ROUND3(AX, BX, CX, DX, BP, 45)
    	ROUND3(BP, AX, BX, CX, DX, 46)
    	ROUND3(DX, BP, AX, BX, CX, 47)
    	ROUND3(CX, DX, BP, AX, BX, 48)
    	ROUND3(BX, CX, DX, BP, AX, 49)
    	ROUND3(AX, BX, CX, DX, BP, 50)
    	ROUND3(BP, AX, BX, CX, DX, 51)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_ppc64x.s

    	MOVD	key+24(FP), KEYP
    	MOVD	iv+32(FP), IVP
    	MOVD	enc+40(FP), ENC
    	MOVD	nr+48(FP), ROUNDS
    
    #ifdef NEEDS_ESPERM
    	MOVD	$·rcon(SB), R11
    	LVX	(R11), ESPERM   // Permute value for P8_ macros.
    #endif
    
    	// Assume len > 0 && len % blockSize == 0.
    	CMPW	ENC, $0
    	P8_LXVB16X(IVP, R0, IVEC)
    	CMPU	ROUNDS, $10, CR1
    	CMPU	ROUNDS, $12, CR2 // Only sizes 10/12/14 are supported.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. src/crypto/sha256/sha256block_amd64.s

    #define nop(m,a)		// nop instead of final SHA256MSG1 for first and last few rounds
    
    #define sha256msg1(m,a) \	// final SHA256MSG1 for middle rounds that require it
    	SHA256MSG1		m, a
    
    #define vmov(a,b) \		// msg copy for all but rounds 12-15
    	VMOVDQA		a, b
    
    #define vmovrev(a,b) \		// reverse copy for rounds 12-15
    	VMOVDQA		b, a
    
    // sha rounds 0 to 11
    // identical with the exception of the final msg op
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    		// The remaining 18 rounds.
    		for i := 0; i < 9; i++ {
    			// Column round.
    			x0, x4, x8, x12 = quarterRound(x0, x4, x8, x12)
    			x1, x5, x9, x13 = quarterRound(x1, x5, x9, x13)
    			x2, x6, x10, x14 = quarterRound(x2, x6, x10, x14)
    			x3, x7, x11, x15 = quarterRound(x3, x7, x11, x15)
    
    			// Diagonal round.
    			x0, x5, x10, x15 = quarterRound(x0, x5, x10, x15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  5. src/crypto/internal/mlkem768/mlkem768_test.go

    	// FloatString rounds halves away from 0, and our result should always be positive,
    	// so it should work as we expect. (There's no direct way to round a Rat.)
    	rounded, err := strconv.ParseInt(precise.FloatString(0), 10, 64)
    	if err != nil {
    		panic(err)
    	}
    
    	// If we rounded up, `rounded` may be equal to 2ᵈ, so we perform a final reduction.
    	return uint16(rounded % (1 << d))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/keccakf.go

    	// in the keccak reference code.
    	var t, bc0, bc1, bc2, bc3, bc4, d0, d1, d2, d3, d4 uint64
    
    	for i := 0; i < 24; i += 4 {
    		// Combines the 5 steps in each round into 2 steps.
    		// Unrolls 4 rounds per loop and spreads some steps across rounds.
    
    		// Round 1
    		bc0 = a[0] ^ a[5] ^ a[10] ^ a[15] ^ a[20]
    		bc1 = a[1] ^ a[6] ^ a[11] ^ a[16] ^ a[21]
    		bc2 = a[2] ^ a[7] ^ a[12] ^ a[17] ^ a[22]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/math/big/prime.go

    		return false
    	}
    
    	return x.abs.probablyPrimeMillerRabin(n+1, true) && x.abs.probablyPrimeLucas()
    }
    
    // probablyPrimeMillerRabin reports whether n passes reps rounds of the
    // Miller-Rabin primality test, using pseudo-randomly chosen bases.
    // If force2 is true, one of the rounds is forced to use base 2.
    // See Handbook of Applied Cryptography, p. 139, Algorithm 4.24.
    // The number n is known to be non-zero.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd_test.go

    				labelName: labelValue,
    			})
    			return currentObject, nil
    		}
    	}
    
    	errs := make(chan error, 1)
    	rounds := 100
    	go func() {
    		// continuously submits a patch that updates a label and verifies the label update was effective
    		labelName := "timestamp"
    		for i := 0; i < rounds; i++ {
    			expectedLabelValue := fmt.Sprint(i)
    			update, err := fetchObject(name)
    			if err != nil {
    				errs <- err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. src/strconv/ftoa.go

    		case 'f':
    			prec = max(digs.nd-digs.dp, 0)
    		case 'g', 'G':
    			prec = digs.nd
    		}
    	} else {
    		// Round appropriately.
    		switch fmt {
    		case 'e', 'E':
    			d.Round(prec + 1)
    		case 'f':
    			d.Round(d.dp + prec)
    		case 'g', 'G':
    			if prec == 0 {
    				prec = 1
    			}
    			d.Round(prec)
    		}
    		digs = decimalSlice{d: d.d[:], nd: d.nd, dp: d.dp}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/math/big/ratconv_test.go

    	"long:2." + strings.Repeat("2", 4000) + "e+1",
    
    	// Exactly halfway between 1 and math.Nextafter(1, 2).
    	// Round to even (down).
    	"1.00000000000000011102230246251565404236316680908203125",
    	// Slightly lower; still round down.
    	"1.00000000000000011102230246251565404236316680908203124",
    	// Slightly higher; round up.
    	"1.00000000000000011102230246251565404236316680908203126",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top