Searched defs:tarindex (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dbase64.c217 int tarindex, state, ch; local
221 tarindex = 0;
237 if ((size_t)tarindex >= targsize)
239 target[tarindex] = (pos - Base64) << 2;
245 if ((size_t)tarindex + 1 >= targsize)
247 target[tarindex] |= (pos - Base64) >> 4;
248 target[tarindex+1] = ((pos - Base64) & 0x0f)
251 tarindex++;
256 if ((size_t)tarindex + 1 >= targsize)
258 target[tarindex] |
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DDNSDigest.c1153 int tarindex, state, ch; local
1157 tarindex = 0;
1173 if ((mDNSu32)tarindex >= targsize)
1175 target[tarindex] = (mDNSu8)((pos - Base64) << 2);
1181 if ((mDNSu32)tarindex + 1 >= targsize)
1183 target[tarindex] |= (pos - Base64) >> 4;
1184 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x0f) << 4);
1186 tarindex++;
1191 if ((mDNSu32)tarindex + 1 >= targsize)
1193 target[tarindex] |
[all...]

Completed in 77 milliseconds