HomeSort by: relevance | last modified time | path
    Searched defs:nextbyte (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libc/net/
base64.c 221 u_char nextbyte; local in function:b64_pton
256 nextbyte = (u_char)((pos - Base64) & 0x0f) << 4;
258 target[tarindex + 1] = nextbyte;
259 else if (nextbyte)
271 nextbyte = (u_char)((pos - Base64) & 0x03) << 6;
273 target[tarindex + 1] = nextbyte;
274 else if (nextbyte)
base64.c 221 u_char nextbyte; local in function:b64_pton
256 nextbyte = (u_char)((pos - Base64) & 0x0f) << 4;
258 target[tarindex + 1] = nextbyte;
259 else if (nextbyte)
271 nextbyte = (u_char)((pos - Base64) & 0x03) << 6;
273 target[tarindex + 1] = nextbyte;
274 else if (nextbyte)

Completed in 21 milliseconds