Lines Matching full:intmp
5592 unsigned char intmp[4], outtmp[4]; /* temporary buffers for the convert */
5594 int nbintmp; /* number of byte in intmp[] */
5654 intmp[nbintmp++] = cur;
5656 * if intmp is full, push the 4byte sequence as a 3 byte
5661 outtmp[0] = (intmp[0] << 2) | ((intmp[1] & 0x30) >> 4);
5663 ((intmp[1] & 0x0F) << 4) | ((intmp[2] & 0x3C) >> 2);
5664 outtmp[2] = ((intmp[2] & 0x03) << 6) | (intmp[3] & 0x3F);