Lines Matching defs:pos
26 unsigned char *out, *pos;
45 pos = out;
48 *pos++ = table[(in[0] >> 2) & 0x3f];
49 *pos++ = table[(((in[0] & 0x03) << 4) | (in[1] >> 4)) & 0x3f];
50 *pos++ = table[(((in[1] & 0x0f) << 2) | (in[2] >> 6)) & 0x3f];
51 *pos++ = table[in[2] & 0x3f];
55 *pos++ = '\n';
61 *pos++ = table[(in[0] >> 2) & 0x3f];
63 *pos++ = table[((in[0] & 0x03) << 4) & 0x3f];
65 *pos++ = '=';
67 *pos++ = table[(((in[0] & 0x03) << 4) |
69 *pos++ = table[((in[1] & 0x0f) << 2) & 0x3f];
72 *pos++ = '=';
77 *pos++ = '\n';
79 *pos = '\0';
81 *out_len = pos - out;
90 unsigned char dtable[256], *out, *pos, block[4], tmp;
111 pos = out = os_malloc(olen);
132 *pos++ = (block[0] << 2) | (block[1] >> 4);
133 *pos++ = (block[1] << 4) | (block[2] >> 2);
134 *pos++ = (block[2] << 6) | block[3];
138 pos--;
140 pos -= 2;
151 *out_len = pos - out;