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

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dbase64.c240 int tarindex, state, ch; local
244 tarindex = 0;
260 if ((size_t)tarindex >= targsize)
262 target[tarindex] = (u_char)((pos - Base64) << 2);
268 if ((size_t)tarindex + 1 >= targsize)
270 target[tarindex] |= (u_char)((pos - Base64) >> 4);
271 target[tarindex+1] = (u_char)(((pos - Base64) & 0x0f)
274 tarindex++;
279 if ((size_t)tarindex + 1 >= targsize)
281 target[tarindex] |
[all...]

Completed in 110 milliseconds