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

/vbox/src/libs/libxml2-2.6.31/
H A Dxmlreader.c5519 unsigned char intmp[4], outtmp[4]; /* temporary buffers for the convert */ local
5520 int nbintmp; /* number of byte in intmp[] */
5575 intmp[nbintmp++] = cur;
5577 * if intmp is full, push the 4byte sequence as a 3 byte
5582 outtmp[0] = (intmp[0] << 2) | ((intmp[1] & 0x30) >> 4);
5584 ((intmp[1] & 0x0F) << 4) | ((intmp[2] & 0x3C) >> 2);
5585 outtmp[2] = ((intmp[2] & 0x03) << 6) | (intmp[
[all...]

Completed in 60 milliseconds