BLOCKSIZE        1518 libavcodec/ra144.c         for (i=0; i < BLOCKSIZE; i++)
BLOCKSIZE        1521 libavcodec/ra144.c         for (i=0; i < BLOCKSIZE; i++)
BLOCKSIZE        1534 libavcodec/ra144.c     memcpy(target, source, FFMIN(BLOCKSIZE, offset)*sizeof(*target));
BLOCKSIZE        1535 libavcodec/ra144.c     if (offset < BLOCKSIZE)
BLOCKSIZE        1536 libavcodec/ra144.c         memcpy(target + offset, source, (BLOCKSIZE - offset)*sizeof(*target));
BLOCKSIZE        1686 libavcodec/ra144.c     unsigned int sum = adsp->scalarproduct_int16(data, data, BLOCKSIZE);
BLOCKSIZE        1702 libavcodec/ra144.c         cba_idx += BLOCKSIZE/2 - 1;
BLOCKSIZE        1710 libavcodec/ra144.c     memmove(ractx->adapt_cb, ractx->adapt_cb + BLOCKSIZE,
BLOCKSIZE        1711 libavcodec/ra144.c             (BUFFERSIZE - BLOCKSIZE) * sizeof(*ractx->adapt_cb));
BLOCKSIZE        1713 libavcodec/ra144.c     block = ractx->adapt_cb + BUFFERSIZE - BLOCKSIZE;
BLOCKSIZE        1718 libavcodec/ra144.c     memcpy(ractx->curr_sblock, ractx->curr_sblock + BLOCKSIZE,
BLOCKSIZE        1722 libavcodec/ra144.c                                     block, BLOCKSIZE, LPC_ORDER, 1, 0, 0xfff))
BLOCKSIZE        1723 libavcodec/ra144.c         memset(ractx->curr_sblock, 0, (LPC_ORDER+BLOCKSIZE)*sizeof(*ractx->curr_sblock));
BLOCKSIZE          54 libavcodec/ra144.h     int16_t curr_block[NBLOCKS * BLOCKSIZE];
BLOCKSIZE          63 libavcodec/ra144.h     DECLARE_ALIGNED(16, int16_t, buffer_a)[FFALIGN(BLOCKSIZE,16)];
BLOCKSIZE          88 libavcodec/ra144dec.c     frame->nb_samples = NBLOCKS * BLOCKSIZE;
BLOCKSIZE         115 libavcodec/ra144dec.c         for (j=0; j < BLOCKSIZE; j++)
BLOCKSIZE          57 libavcodec/ra144enc.c     avctx->frame_size = NBLOCKS * BLOCKSIZE;
BLOCKSIZE         119 libavcodec/ra144enc.c     for (i = 0; i < BLOCKSIZE; i++) {
BLOCKSIZE         124 libavcodec/ra144enc.c     for (i = 0; i < BLOCKSIZE; i++)
BLOCKSIZE         149 libavcodec/ra144enc.c     ff_celp_lp_synthesis_filterf(work, coefs, vect, BLOCKSIZE, LPC_ORDER);
BLOCKSIZE         155 libavcodec/ra144enc.c     for (i = 0; i < BLOCKSIZE; i++) {
BLOCKSIZE         180 libavcodec/ra144enc.c     for (i = 0; i < FFMIN(BLOCKSIZE, lag); i++)
BLOCKSIZE         182 libavcodec/ra144enc.c     if (lag < BLOCKSIZE)
BLOCKSIZE         183 libavcodec/ra144enc.c         for (i = 0; i < BLOCKSIZE - lag; i++)
BLOCKSIZE         203 libavcodec/ra144enc.c     float exc[BLOCKSIZE];
BLOCKSIZE         206 libavcodec/ra144enc.c     for (i = BLOCKSIZE / 2; i <= BUFFERSIZE; i++) {
BLOCKSIZE         223 libavcodec/ra144enc.c     ff_celp_lp_synthesis_filterf(work, coefs, exc, BLOCKSIZE, LPC_ORDER);
BLOCKSIZE         224 libavcodec/ra144enc.c     for (i = 0; i < BLOCKSIZE; i++)
BLOCKSIZE         226 libavcodec/ra144enc.c     return best_vect - BLOCKSIZE / 2 + 1;
BLOCKSIZE         247 libavcodec/ra144enc.c                            const int8_t cb[][BLOCKSIZE], const float *ortho1,
BLOCKSIZE         253 libavcodec/ra144enc.c     float vect[BLOCKSIZE];
BLOCKSIZE         257 libavcodec/ra144enc.c         for (j = 0; j < BLOCKSIZE; j++)
BLOCKSIZE         286 libavcodec/ra144enc.c     float cba_vect[BLOCKSIZE], cb1_vect[BLOCKSIZE];
BLOCKSIZE         287 libavcodec/ra144enc.c     float vect[BLOCKSIZE];
BLOCKSIZE         304 libavcodec/ra144enc.c         for (i = 0; i < BLOCKSIZE; i++)
BLOCKSIZE         306 libavcodec/ra144enc.c         ff_celp_lp_synthesis_filterf(work, coefs, vect, BLOCKSIZE, LPC_ORDER);
BLOCKSIZE         309 libavcodec/ra144enc.c         for (i = 0; i < BLOCKSIZE; i++)
BLOCKSIZE         335 libavcodec/ra144enc.c     float data[BLOCKSIZE] = { 0 }, work[LPC_ORDER + BLOCKSIZE];
BLOCKSIZE         337 libavcodec/ra144enc.c     float zero[BLOCKSIZE], cba[BLOCKSIZE], cb1[BLOCKSIZE], cb2[BLOCKSIZE];
BLOCKSIZE         345 libavcodec/ra144enc.c         work[i] = ractx->curr_sblock[BLOCKSIZE + i];
BLOCKSIZE         353 libavcodec/ra144enc.c     ff_celp_lp_synthesis_filterf(work + LPC_ORDER, coefs, data, BLOCKSIZE,
BLOCKSIZE         355 libavcodec/ra144enc.c     for (i = 0; i < BLOCKSIZE; i++) {
BLOCKSIZE         376 libavcodec/ra144enc.c         ff_copy_and_dup(ractx->buffer_a, ractx->adapt_cb, cba_idx + BLOCKSIZE / 2 - 1);
BLOCKSIZE         380 libavcodec/ra144enc.c     for (i = 0; i < BLOCKSIZE; i++) {
BLOCKSIZE         384 libavcodec/ra144enc.c     ff_celp_lp_synthesis_filterf(work + LPC_ORDER, coefs, cb1, BLOCKSIZE,
BLOCKSIZE         388 libavcodec/ra144enc.c     ff_celp_lp_synthesis_filterf(work + LPC_ORDER, coefs, cb2, BLOCKSIZE,
BLOCKSIZE         403 libavcodec/ra144enc.c             for (i = 0; i < BLOCKSIZE; i++) {
BLOCKSIZE         410 libavcodec/ra144enc.c             for (i = 0; i < BLOCKSIZE; i++) {
BLOCKSIZE         437 libavcodec/ra144enc.c     int32_t lpc_data[NBLOCKS * BLOCKSIZE];
BLOCKSIZE         460 libavcodec/ra144enc.c     for (i = 0; i < (2 * BLOCKSIZE + BLOCKSIZE / 2); i++) {
BLOCKSIZE         461 libavcodec/ra144enc.c         lpc_data[i] = ractx->curr_block[BLOCKSIZE + BLOCKSIZE / 2 + i];
BLOCKSIZE         466 libavcodec/ra144enc.c         for (j = 0; j < frame->nb_samples && i < NBLOCKS * BLOCKSIZE; i++, j++) {
BLOCKSIZE         471 libavcodec/ra144enc.c     if (i < NBLOCKS * BLOCKSIZE)
BLOCKSIZE         472 libavcodec/ra144enc.c         memset(&lpc_data[i], 0, (NBLOCKS * BLOCKSIZE - i) * sizeof(*lpc_data));
BLOCKSIZE         476 libavcodec/ra144enc.c     ff_lpc_calc_coefs(&ractx->lpc_ctx, lpc_data, NBLOCKS * BLOCKSIZE, LPC_ORDER,
BLOCKSIZE         515 libavcodec/ra144enc.c         ra144_encode_subblock(ractx, ractx->curr_block + i * BLOCKSIZE,
BLOCKSIZE         533 libavcodec/ra144enc.c            (NBLOCKS * BLOCKSIZE - i) * sizeof(*ractx->curr_block));
BLOCKSIZE          36 libavformat/crypto.c     uint8_t inbuffer [BLOCKSIZE*MAX_BUFFER_BLOCKS],
BLOCKSIZE          37 libavformat/crypto.c             outbuffer[BLOCKSIZE*MAX_BUFFER_BLOCKS];
BLOCKSIZE          59 libavformat/crypto.c     uint8_t pad[BLOCKSIZE];
BLOCKSIZE          91 libavformat/crypto.c         } else if (default_buf_len != BLOCKSIZE) {
BLOCKSIZE          94 libavformat/crypto.c                    desc, default_buf_len, BLOCKSIZE);
BLOCKSIZE         101 libavformat/crypto.c     } else if (*buf_len != BLOCKSIZE) {
BLOCKSIZE         104 libavformat/crypto.c                desc, *buf_len, BLOCKSIZE);
BLOCKSIZE         156 libavformat/crypto.c         ret = av_aes_init(c->aes_decrypt, c->decrypt_key, BLOCKSIZE * 8, 1);
BLOCKSIZE         171 libavformat/crypto.c         ret = av_aes_init(c->aes_encrypt, c->encrypt_key, BLOCKSIZE * 8, 0);
BLOCKSIZE         200 libavformat/crypto.c     while (c->indata - c->indata_used < 2*BLOCKSIZE) {
BLOCKSIZE         209 libavformat/crypto.c     blocks = (c->indata - c->indata_used) / BLOCKSIZE;
BLOCKSIZE         216 libavformat/crypto.c     c->outdata      = BLOCKSIZE * blocks;
BLOCKSIZE         218 libavformat/crypto.c     c->indata_used += BLOCKSIZE * blocks;
BLOCKSIZE         283 libavformat/crypto.c     block = pos/BLOCKSIZE;
BLOCKSIZE         294 libavformat/crypto.c         c->position = (block * BLOCKSIZE);
BLOCKSIZE         307 libavformat/crypto.c         uint8_t buff[BLOCKSIZE*2]; // maximum size of pos-c->position
BLOCKSIZE         340 libavformat/crypto.c     pad_len = total_size % BLOCKSIZE;
BLOCKSIZE         342 libavformat/crypto.c     blocks = out_size / BLOCKSIZE;
BLOCKSIZE         351 libavformat/crypto.c             memcpy(&c->pad[c->pad_len], buf, BLOCKSIZE - c->pad_len);
BLOCKSIZE         357 libavformat/crypto.c                      &c->write_buf[c->pad_len ? BLOCKSIZE : 0],
BLOCKSIZE         358 libavformat/crypto.c                      &buf[c->pad_len ? BLOCKSIZE - c->pad_len : 0],
BLOCKSIZE         380 libavformat/crypto.c         uint8_t out_buf[BLOCKSIZE];
BLOCKSIZE         381 libavformat/crypto.c         int pad = BLOCKSIZE - c->pad_len;
BLOCKSIZE         385 libavformat/crypto.c         ret = ffurl_write(c->hd, out_buf, BLOCKSIZE);