Lines Matching refs:dst
83 uint8_t *dst = out;
94 while (end - dst > 3) {
101 AV_WN32(dst, v);
102 dst += 3;
105 if (end - dst) {
110 *dst++ = v >> 16;
111 if (end - dst)
112 *dst++ = v >> 8;
113 if (end - dst)
114 *dst++ = v;
130 if (end - dst)
131 *dst++ = v >> 10;
134 if (end - dst)
135 *dst++ = v >> 4;
138 return bits & 1 ? AVERROR_INVALIDDATA : out ? dst - out : 0;
151 char *ret, *dst;
159 ret = dst = out;
163 *dst++ = b64[ i_bits>>26 ];
164 *dst++ = b64[(i_bits>>20) & 0x3F];
165 *dst++ = b64[(i_bits>>14) & 0x3F];
166 *dst++ = b64[(i_bits>>8 ) & 0x3F];
175 *dst++ = b64[(i_bits << 6 >> i_shift) & 0x3f];
178 while ((dst - ret) & 3)
179 *dst++ = '=';
180 *dst = '\0';