Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for b15 (0.02 sec)

  1. src/internal/chacha8rand/chacha8_generic.go

    		b13 := b[13][i]
    		b14 := b[14][i]
    		b15 := b[15][i]
    
    		// 4 iterations of eight quarter-rounds each is 8 rounds
    		for round := 0; round < 4; round++ {
    			b0, b4, b8, b12 = qr(b0, b4, b8, b12)
    			b1, b5, b9, b13 = qr(b1, b5, b9, b13)
    			b2, b6, b10, b14 = qr(b2, b6, b10, b14)
    			b3, b7, b11, b15 = qr(b3, b7, b11, b15)
    
    			b0, b5, b10, b15 = qr(b0, b5, b10, b15)
    			b1, b6, b11, b12 = qr(b1, b6, b11, b12)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/ZipHasherTest.groovy

            def jarfile2 = tmpDir.file("test2.jar")
            createJarWithBuildInfo(jarfile2, ["created-by": "1.8.0_232-b15 (Azul Systems, Inc.)", "foo": "true"], "Build information 1.1")
    
            def hash1 = ignoringZipHasher.hash(snapshotContext(jarfile))
            def hash2 = ignoringZipHasher.hash(snapshotContext(jarfile2))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. test/const1.go

    	b12  byte = 1000                  // ERROR "overflow|cannot convert"
    	b13  byte = byte(1000)            // ERROR "overflow|cannot convert"
    	b14  byte = byte(100) * byte(100) // ERROR "overflow|cannot convert"
    	b15  byte = byte(100) * 100       // ERROR "overflow|cannot convert"
    	b16  byte = byte(0) * 1000        // ERROR "overflow|cannot convert"
    	b16a byte = 0 * 1000              // OK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 21:49:31 UTC 2020
    - 3.8K bytes
    - Viewed (0)
Back to top