Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BenchmarkHash8K (0.72 sec)

  1. src/cmd/internal/notsha256/sha256_test.go

    			Sum256(buf[:size])
    		}
    	})
    }
    
    func BenchmarkHash8Bytes(b *testing.B) {
    	benchmarkSize(b, 8)
    }
    
    func BenchmarkHash1K(b *testing.B) {
    	benchmarkSize(b, 1024)
    }
    
    func BenchmarkHash8K(b *testing.B) {
    	benchmarkSize(b, 8192)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:17 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  2. src/crypto/md5/md5_test.go

    	benchmarkSize(b, 256, false)
    }
    
    func BenchmarkHash512(b *testing.B) {
    	benchmarkSize(b, 512, false)
    }
    
    func BenchmarkHash1K(b *testing.B) {
    	benchmarkSize(b, 1024, false)
    }
    
    func BenchmarkHash8K(b *testing.B) {
    	benchmarkSize(b, 8192, false)
    }
    
    func BenchmarkHash1M(b *testing.B) {
    	benchmarkSize(b, 1024*1024, false)
    }
    
    func BenchmarkHash8M(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
  3. src/crypto/sha1/sha1_test.go

    	benchmarkSize(b, 8)
    }
    
    func BenchmarkHash320Bytes(b *testing.B) {
    	benchmarkSize(b, 320)
    }
    
    func BenchmarkHash1K(b *testing.B) {
    	benchmarkSize(b, 1024)
    }
    
    func BenchmarkHash8K(b *testing.B) {
    	benchmarkSize(b, 8192)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  4. src/crypto/sha256/sha256_test.go

    			Sum256(buf[:size])
    		}
    	})
    }
    
    func BenchmarkHash8Bytes(b *testing.B) {
    	benchmarkSize(b, 8)
    }
    
    func BenchmarkHash1K(b *testing.B) {
    	benchmarkSize(b, 1024)
    }
    
    func BenchmarkHash8K(b *testing.B) {
    	benchmarkSize(b, 8192)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:21:42 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  5. src/crypto/sha512/sha512_test.go

    			Sum512(buf[:size])
    		}
    	})
    }
    
    func BenchmarkHash8Bytes(b *testing.B) {
    	benchmarkSize(b, 8)
    }
    
    func BenchmarkHash1K(b *testing.B) {
    	benchmarkSize(b, 1024)
    }
    
    func BenchmarkHash8K(b *testing.B) {
    	benchmarkSize(b, 8192)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
Back to top