Home
last modified time | relevance | path

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

/external/openssh/openbsd-compat/
Dbase64.c199 u_int tarindex, state; in b64_pton() local
204 tarindex = 0; in b64_pton()
220 if (tarindex >= targsize) in b64_pton()
222 target[tarindex] = (pos - Base64) << 2; in b64_pton()
228 if (tarindex + 1 >= targsize) in b64_pton()
230 target[tarindex] |= (pos - Base64) >> 4; in b64_pton()
231 target[tarindex+1] = ((pos - Base64) & 0x0f) in b64_pton()
234 tarindex++; in b64_pton()
239 if (tarindex + 1 >= targsize) in b64_pton()
241 target[tarindex] |= (pos - Base64) >> 2; in b64_pton()
[all …]
/external/mdnsresponder/mDNSCore/
DDNSDigest.c1163 int tarindex, state, ch; in DNSDigest_Base64ToBin() local
1167 tarindex = 0; in DNSDigest_Base64ToBin()
1183 if ((mDNSu32)tarindex >= targsize) in DNSDigest_Base64ToBin()
1185 target[tarindex] = (mDNSu8)((pos - Base64) << 2); in DNSDigest_Base64ToBin()
1191 if ((mDNSu32)tarindex + 1 >= targsize) in DNSDigest_Base64ToBin()
1193 target[tarindex] |= (pos - Base64) >> 4; in DNSDigest_Base64ToBin()
1194 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x0f) << 4); in DNSDigest_Base64ToBin()
1196 tarindex++; in DNSDigest_Base64ToBin()
1201 if ((mDNSu32)tarindex + 1 >= targsize) in DNSDigest_Base64ToBin()
1203 target[tarindex] |= (pos - Base64) >> 2; in DNSDigest_Base64ToBin()
[all …]