encoding/base64.Encoding.EncodedLen (method)

5 uses

	encoding/base64 (current package)
		base64.go#L199: 	n := enc.EncodedLen(len(src))
		base64.go#L207: 	buf := make([]byte, enc.EncodedLen(len(src)))
		base64.go#L273: 		_, e.err = e.w.Write(e.out[:e.enc.EncodedLen(e.nbuf)])
		base64.go#L290: func (enc *Encoding) EncodedLen(n int) int {

	mime
		encodedword.go#L86: 	if !isUTF8(charset) || base64.StdEncoding.EncodedLen(len(s)) <= maxContentLen {