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

/external/libxml2/
H A Dxmlreader.c5776 unsigned char intmp[4], outtmp[4]; /* temporary buffers for the convert */ local
5778 int nbintmp; /* number of byte in intmp[] */
5838 intmp[nbintmp++] = cur;
5840 * if intmp is full, push the 4byte sequence as a 3 byte
5845 outtmp[0] = (intmp[0] << 2) | ((intmp[1] & 0x30) >> 4);
5847 ((intmp[1] & 0x0F) << 4) | ((intmp[2] & 0x3C) >> 2);
5848 outtmp[2] = ((intmp[2] & 0x03) << 6) | (intmp[
[all...]

Completed in 55 milliseconds