encoding/base32.encoder.nbuf (field)
12 uses
encoding/base32 (current package)
base32.go#L180: nbuf int // number of bytes in buf
base32.go#L190: if e.nbuf > 0 {
base32.go#L192: for i = 0; i < len(p) && e.nbuf < 5; i++ {
base32.go#L193: e.buf[e.nbuf] = p[i]
base32.go#L194: e.nbuf++
base32.go#L198: if e.nbuf < 5 {
base32.go#L205: e.nbuf = 0
base32.go#L227: e.nbuf = len(p)
base32.go#L236: if e.err == nil && e.nbuf > 0 {
base32.go#L237: e.enc.Encode(e.out[0:], e.buf[0:e.nbuf])
base32.go#L238: encodedLen := e.enc.EncodedLen(e.nbuf)
base32.go#L239: e.nbuf = 0
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |