Lines Matching defs:pos
159 unsigned char *pos = nullptr;
174 pos = out;
183 *pos = table[pStart[0] >> 2];
185 *(pos + 1) = table[((pStart[0] & LOWER_2_BITS_MASK) << 4) | (pStart[1] >> 4)];
187 *(pos + 2) = table[((pStart[1] & LOWER_4_BITS_MASK) << 2) | (pStart[2] >> 6)];
189 *(pos + 3) = table[pStart[2] & LOWER_6_BITS_MASK];
190 // 4 : the pointer of pos scrolls off 4 bytes to point the next 4 bytes of encoded chars
191 pos += 4;
199 *pos = table[pStart[0] >> 2];
202 *(pos + 1) = table[(pStart[0] & LOWER_2_BITS_MASK) << 4];
204 *(pos + 2) = '=';
207 *(pos + 1) = table[((pStart[0] & LOWER_2_BITS_MASK) << 4) | (pStart[1] >> 4)];
209 *(pos + 2) = table[(pStart[1] & LOWER_4_BITS_MASK) << 2];
212 *(pos + 3) = '=';