bytes.Buffer.Next (method)

20 uses

	bytes (current package)
		buffer.go#L346: func (b *Buffer) Next(n int) []byte {

	crypto/tls
		conn.go#L686: 	record := c.rawInput.Next(recordHeaderLen + n)
		conn.go#L1120: 	data = c.hand.Next(4 + n)

	github.com/jackc/pgx/v5/pgproto3
		copy_both_response.go#L30: 	overallFormat := buf.Next(1)[0]
		copy_both_response.go#L32: 	columnCount := int(binary.BigEndian.Uint16(buf.Next(2)))
		copy_both_response.go#L39: 		columnFormatCodes[i] = binary.BigEndian.Uint16(buf.Next(2))
		copy_in_response.go#L30: 	overallFormat := buf.Next(1)[0]
		copy_in_response.go#L32: 	columnCount := int(binary.BigEndian.Uint16(buf.Next(2)))
		copy_in_response.go#L39: 		columnFormatCodes[i] = binary.BigEndian.Uint16(buf.Next(2))
		copy_out_response.go#L29: 	overallFormat := buf.Next(1)[0]
		copy_out_response.go#L31: 	columnCount := int(binary.BigEndian.Uint16(buf.Next(2)))
		copy_out_response.go#L38: 		columnFormatCodes[i] = binary.BigEndian.Uint16(buf.Next(2))
		execute.go#L33: 	dst.MaxRows = binary.BigEndian.Uint32(buf.Next(4))
		notification_response.go#L29: 	pid := binary.BigEndian.Uint32(buf.Next(4))
		parameter_description.go#L30: 	buf.Next(2)
		parameter_description.go#L37: 		dst.ParameterOIDs[i] = binary.BigEndian.Uint32(buf.Next(4))
		parse.go#L44: 	parameterOIDCount := int(binary.BigEndian.Uint16(buf.Next(2)))
		parse.go#L50: 		dst.ParameterOIDs = append(dst.ParameterOIDs, binary.BigEndian.Uint32(buf.Next(4)))

	google.golang.org/grpc/internal/transport
		controlbuf.go#L759: 				BlockFragment: l.hBuf.Next(size),
		controlbuf.go#L767: 				l.hBuf.Next(size),