We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb58139 commit 54cca48Copy full SHA for 54cca48
decoder.go
@@ -2,6 +2,7 @@ package base64
2
3
import "unsafe"
4
5
+//go:nosplit
6
func (e *Encoding) decode(dst []byte, src []byte) int {
7
inlen := uintptr(len(src))
8
if inlen == 0 || (e.pad && (inlen&3) != 0) {
encoder.go
func (e *Encoding) encode(dst []byte, src []byte, outlen uintptr) {
inlen := len(src)
ip := (*sliceHeader)(unsafe.Pointer(&src)).data
0 commit comments