Lines Matching defs:dst
35 unsigned char* dst = static_cast<unsigned char*>(dstv);
76 if (dst) {
86 dst[i] = (unsigned char) one;
91 if (dst)
92 dst[i] = (unsigned char) two;
96 if (dst)
97 dst[i] = (unsigned char) three;
111 unsigned char* dst = static_cast<unsigned char*>(dstv);
119 if (dst) {
130 *dst++ = encode[a];
131 *dst++ = encode[b];
132 *dst++ = encode[c];
133 *dst++ = encode[d];
145 *dst++ = encode[a >> 2];
146 *dst++ = encode[(k1 | a << 4) & 0x3F];
147 *dst++ = encode[k2];
148 *dst++ = encode[EncodePad];