Home
last modified time | relevance | path

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

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