Home | History | Annotate | Download | only in BsdSocketLib

Lines Matching refs:tarindex

241   int tarindex, state, ch;

245 tarindex = 0;
261 if ((size_t)tarindex >= targsize)
263 target[tarindex] = (u_char)((pos - Base64) << 2);
269 if ((size_t)tarindex + 1 >= targsize)
271 target[tarindex] |= (u_char)((pos - Base64) >> 4);
272 target[tarindex+1] = (u_char)(((pos - Base64) & 0x0f)
275 tarindex++;
280 if ((size_t)tarindex + 1 >= targsize)
282 target[tarindex] |= (u_char)((pos - Base64) >> 2);
283 target[tarindex+1] = (u_char)(((pos - Base64) & 0x03)
286 tarindex++;
291 if ((size_t)tarindex >= targsize)
293 target[tarindex] |= (u_char)(pos - Base64);
295 tarindex++;
342 if (target && target[tarindex] != 0)
354 return (tarindex);