HomeSort by relevance Sort by last modified time
    Searched refs:tarindex (Results 1 - 3 of 3) sorted by null

  /bionic/libc/netbsd/net/
base64.c 220 size_t tarindex; local
228 tarindex = 0;
244 if (tarindex >= targsize)
246 target[tarindex] = (pos - Base64) << 2;
252 if (tarindex + 1 >= targsize)
254 target[tarindex] |=
256 target[tarindex+1] = ((pos - Base64) & 0x0f)
259 tarindex++;
264 if (tarindex + 1 >= targsize)
266 target[tarindex] |
    [all...]
  /external/openssh/openbsd-compat/
base64.c 199 u_int tarindex, state; local
204 tarindex = 0;
220 if (tarindex >= targsize)
222 target[tarindex] = (pos - Base64) << 2;
228 if (tarindex + 1 >= targsize)
230 target[tarindex] |= (pos - Base64) >> 4;
231 target[tarindex+1] = ((pos - Base64) & 0x0f)
234 tarindex++;
239 if (tarindex + 1 >= targsize)
241 target[tarindex] |= (pos - Base64) >> 2
    [all...]
  /external/mdnsresponder/mDNSCore/
DNSDigest.c 1161 int tarindex, state, ch; local
    [all...]

Completed in 860 milliseconds