Searched refs:intmp (Results 1 - 1 of 1) sorted by relevance

/haiku-fatelf/src/tools/docbook/libxml2/
H A Dxmlreader.c5504 unsigned char intmp[4], outtmp[4]; /* temporary buffers for the convert */ local
5505 int nbintmp; /* number of byte in intmp[] */
5560 intmp[nbintmp++] = cur;
5562 * if intmp is full, push the 4byte sequence as a 3 byte
5567 outtmp[0] = (intmp[0] << 2) | ((intmp[1] & 0x30) >> 4);
5569 ((intmp[1] & 0x0F) << 4) | ((intmp[2] & 0x3C) >> 2);
5570 outtmp[2] = ((intmp[2] & 0x03) << 6) | (intmp[
[all...]

Completed in 43 milliseconds