Home
last modified time | relevance | path

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

/bionic/libc/upstream-openbsd/lib/libc/net/
Dbase64.c195 int tarindex, state, ch; local
200 tarindex = 0;
216 if (tarindex >= targsize)
218 target[tarindex] = (pos - Base64) << 2;
224 if (tarindex >= targsize)
226 target[tarindex] |= (pos - Base64) >> 4;
228 if (tarindex + 1 < targsize)
229 target[tarindex+1] = nextbyte;
233 tarindex++;
238 if (tarindex >= targsize)
[all …]