Home
last modified time | relevance | path

Searched refs:nextbyte (Results 1 – 1 of 1) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/net/
Dbase64.c188 unsigned char nextbyte; in b64_pton() local
219 nextbyte = ((pos - Base64) & 0x0f) << 4; in b64_pton()
221 target[tarindex+1] = nextbyte; in b64_pton()
222 else if (nextbyte) in b64_pton()
233 nextbyte = ((pos - Base64) & 0x03) << 6; in b64_pton()
235 target[tarindex+1] = nextbyte; in b64_pton()
236 else if (nextbyte) in b64_pton()