Home | History | Annotate | Download | only in animator

Lines Matching refs:dst

46     unsigned char* dst = (unsigned char*) fData;
96 *dst = (unsigned char) one;
98 dst++;
102 *dst = (unsigned char) two;
103 dst++;
107 *dst = (unsigned char) three;
108 dst++;
111 fLength = dst - dstStart;
121 unsigned char* dst = (unsigned char*) dstPtr;
122 if (dst) {
133 *dst++ = encode[a];
134 *dst++ = encode[b];
135 *dst++ = encode[c];
136 *dst++ = encode[d];
148 *dst++ = encode[a >> 2];
149 *dst++ = encode[(k1 | a << 4) & 0x3F];
150 *dst++ = encode[k2];
151 *dst++ = encode[EncodePad];