Home
last modified time | relevance | path

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

/external/libxml2/
Dxmlreader.c5758 unsigned char intmp[4], outtmp[4]; /* temporary buffers for the convert */ in xmlBase64Decode() local
5820 intmp[nbintmp++] = cur; in xmlBase64Decode()
5827 outtmp[0] = (intmp[0] << 2) | ((intmp[1] & 0x30) >> 4); in xmlBase64Decode()
5829 ((intmp[1] & 0x0F) << 4) | ((intmp[2] & 0x3C) >> 2); in xmlBase64Decode()
5830 outtmp[2] = ((intmp[2] & 0x03) << 6) | (intmp[3] & 0x3F); in xmlBase64Decode()