Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for copyIntoBuf (0.15 sec)

  1. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    	s.resetBuf()
    	return &s
    }
    
    func (s *asmState) clone() *asmState {
    	c := *s
    	c.buf = c.storage[:len(s.buf):cap(s.buf)]
    	return &c
    }
    
    // copyIntoBuf copies b into buf. It will panic if there is not enough space to
    // store all of b.
    func (s *asmState) copyIntoBuf(b []byte) {
    	bufLen := len(s.buf)
    	s.buf = s.buf[:len(s.buf)+len(b)]
    	copy(s.buf[bufLen:], b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top