Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for rounds (0.14 sec)

  1. src/crypto/sha1/sha1block_arm.s

    loop2:	ROUND2(Ra, Rb, Rc, Rd, Re)
    	ROUND2(Re, Ra, Rb, Rc, Rd)
    	ROUND2(Rd, Re, Ra, Rb, Rc)
    	ROUND2(Rc, Rd, Re, Ra, Rb)
    	ROUND2(Rb, Rc, Rd, Re, Ra)
    	SUB.S	$1, Rctr
    	BNE	loop2
    
    	MOVW	$0x8F1BBCDC, Rconst
    	MOVW	$4, Rctr
    loop3:	ROUND3(Ra, Rb, Rc, Rd, Re)
    	ROUND3(Re, Ra, Rb, Rc, Rd)
    	ROUND3(Rd, Re, Ra, Rb, Rc)
    	ROUND3(Rc, Rd, Re, Ra, Rb)
    	ROUND3(Rb, Rc, Rd, Re, Ra)
    	SUB.S	$1, Rctr
    	BNE	loop3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/crypto/sha1/sha1block_386.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
    - 6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    		expectedResult   bool
    		expectedError    error
    	}
    	tests := []struct {
    		testName string
    		rounds   []testCase
    	}{
    		{
    			testName: "Disabled - default disabled",
    			rounds:   []testCase{{expectedResult: false}},
    		},
    		{
    			testName: "Enabled - supported versions bound",
    			rounds: []testCase{
    				{endpointsVersion: []mockEndpointVersion{
    					{Version: "3.4.31", Endpoint: "localhost:2390"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. src/crypto/aes/cipher_asm.go

    	c := aesCipherGCM{aesCipherAsm{aesCipher{l: uint8(len(key) + 28)}}}
    	var rounds int
    	switch len(key) {
    	case 128 / 8:
    		rounds = 10
    	case 192 / 8:
    		rounds = 12
    	case 256 / 8:
    		rounds = 14
    	default:
    		return nil, KeySizeError(len(key))
    	}
    
    	expandKeyAsm(rounds, &key[0], &c.enc[0], &c.dec[0])
    	if supportsAES && supportsGFMUL {
    		return &c, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/crypto/aes/block.go

    	_ = src[15] // early bounds check
    	s0 := byteorder.BeUint32(src[0:4])
    	s1 := byteorder.BeUint32(src[4:8])
    	s2 := byteorder.BeUint32(src[8:12])
    	s3 := byteorder.BeUint32(src[12:16])
    
    	// First round just XORs input with key.
    	s0 ^= xk[0]
    	s1 ^= xk[1]
    	s2 ^= xk[2]
    	s3 ^= xk[3]
    
    	// Middle rounds shuffle using tables.
    	// Number of rounds is set by length of expanded key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/strconv/ctoa.go

    // license that can be found in the LICENSE file.
    
    package strconv
    
    // FormatComplex converts the complex number c to a string of the
    // form (a+bi) where a and b are the real and imaginary parts,
    // formatted according to the format fmt and precision prec.
    //
    // The format fmt and precision prec have the same meaning as in [FormatFloat].
    // It rounds the result assuming that the original was obtained from a complex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskLogger.kt

      queue: TaskQueue,
      message: String,
    ) {
      fine("${queue.name} ${String.format("%-22s", message)}: ${task.name}")
    }
    
    /**
     * Returns a duration in the nearest whole-number units like "999 µs" or "  1 s ". This rounds 0.5
     * units away from 0 and 0.499 towards 0. The smallest unit this returns is "µs"; the largest unit
     * it returns is "s". For values in [-499..499] this returns "  0 µs".
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // implementation outline, the notation now() is used to mean reading
    // the virtual clock. In the original paper’s terms, "R(t)" is the
    // number of "rounds" that have been completed at real time t ---
    // where a round consists of virtually transmitting one bit from every
    // non-empty queue in the router (regardless of which queue holds the
    // packet that is really being transmitted at the moment); in this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/internal/fuzz/coverage.go

    	if len(base) != len(snapshot) {
    		panic(fmt.Sprintf("the number of coverage bits changed: before=%d, after=%d", len(base), len(snapshot)))
    	}
    	found := false
    	for i := range snapshot {
    		if snapshot[i]&^base[i] != 0 {
    			found = true
    			break
    		}
    	}
    	if !found {
    		return nil
    	}
    	diff := make([]byte, len(snapshot))
    	for i := range diff {
    		diff[i] = snapshot[i] &^ base[i]
    	}
    	return diff
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/go/types/named_test.go

    			T.AddMethod(m)
    		}
    
    		// check method order
    		if i == 0 {
    			// first round: collect methods in given order
    			methods = make([]string, T.NumMethods())
    			for j := range methods {
    				methods[j] = T.Method(j).Name()
    			}
    		} else {
    			// successive rounds: methods must appear in the same order
    			if got := T.NumMethods(); got != len(methods) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 16:29:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top