Home | History | Annotate | Download | only in utils

Lines Matching refs:table

22 					 const unsigned char *table,
45 *pos++ = table[(in[0] >> 2) & 0x3f];
46 *pos++ = table[(((in[0] & 0x03) << 4) | (in[1] >> 4)) & 0x3f];
47 *pos++ = table[(((in[1] & 0x0f) << 2) | (in[2] >> 6)) & 0x3f];
48 *pos++ = table[in[2] & 0x3f];
58 *pos++ = table[(in[0] >> 2) & 0x3f];
60 *pos++ = table[((in[0] & 0x03) << 4) & 0x3f];
64 *pos++ = table[(((in[0] & 0x03) << 4) |
66 *pos++ = table[((in[1] & 0x0f) << 2) & 0x3f];
85 const unsigned char *table)
94 dtable[table[i]] = (unsigned char) i;