Lines Matching refs:dst
52 static void tea_crypt_ecb(AVTEA *ctx, uint8_t *dst, const uint8_t *src,
91 AV_WB32(dst, v0);
92 AV_WB32(dst + 4, v1);
95 void av_tea_crypt(AVTEA *ctx, uint8_t *dst, const uint8_t *src, int count,
102 tea_crypt_ecb(ctx, dst, src, decrypt, iv);
105 dst += 8;
111 dst[i] = src[i] ^ iv[i];
112 tea_crypt_ecb(ctx, dst, dst, decrypt, NULL);
113 memcpy(iv, dst, 8);
115 tea_crypt_ecb(ctx, dst, src, decrypt, NULL);
118 dst += 8;