Searched refs:tarindex (Results 1 – 2 of 2) sorted by relevance
199 u_int tarindex, state; in b64_pton() local204 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 …]
1163 int tarindex, state, ch; in DNSDigest_Base64ToBin() local1167 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 …]