Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for blockGeneric (0.37 sec)

  1. src/crypto/md5/md5.go

    	// Note that we currently call block or blockGeneric
    	// directly (guarded using haveAsm) because this allows
    	// escape analysis to see that p and d don't escape.
    	nn = len(p)
    	d.len += uint64(nn)
    	if d.nx > 0 {
    		n := copy(d.x[d.nx:], p)
    		d.nx += n
    		if d.nx == BlockSize {
    			if haveAsm {
    				block(d, d.x[:])
    			} else {
    				blockGeneric(d, d.x[:])
    			}
    			d.nx = 0
    		}
    		p = p[n:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/crypto/md5/gen.go

    // license that can be found in the LICENSE file.
    
    // Code generated by go run gen.go -output md5block.go; DO NOT EDIT.
    
    package md5
    
    import (
    	"internal/byteorder"
    	"math/bits"
    )
    
    func blockGeneric(dig *digest, p []byte) {
    	// load state
    	a, b, c, d := dig.s[0], dig.s[1], dig.s[2], dig.s[3]
    
    	for i := 0; i <= len(p)-BlockSize; i += BlockSize {
    		// eliminate bounds checks on p
    		q := p[i:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/crypto/md5/md5block.go

    // license that can be found in the LICENSE file.
    
    // Code generated by go run gen.go -output md5block.go; DO NOT EDIT.
    
    package md5
    
    import (
    	"internal/byteorder"
    	"math/bits"
    )
    
    func blockGeneric(dig *digest, p []byte) {
    	// load state
    	a, b, c, d := dig.s[0], dig.s[1], dig.s[2], dig.s[3]
    
    	for i := 0; i <= len(p)-BlockSize; i += BlockSize {
    		// eliminate bounds checks on p
    		q := p[i:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top