Lines Matching refs:pad
59 uint8_t pad[BLOCKSIZE];
347 memcpy(&c->pad[c->pad_len], buf, BLOCKSIZE - c->pad_len);
348 av_aes_crypt(c->aes_encrypt, c->write_buf, c->pad, 1, c->encrypt_iv, 0);
361 memcpy(c->pad, &buf[size - pad_len], pad_len);
363 memcpy(&c->pad[c->pad_len], buf, size);
377 int pad = BLOCKSIZE - c->pad_len;
379 memset(&c->pad[c->pad_len], pad, pad);
380 av_aes_crypt(c->aes_encrypt, out_buf, c->pad, 1, c->encrypt_iv, 0);