TEA_BLOCK_SIZE    165 libavformat/aadec.c         for (j = 0; j < TEA_BLOCK_SIZE && idx < 18; j+=1, idx+=1) {
TEA_BLOCK_SIZE    246 libavformat/aadec.c     uint8_t dst[TEA_BLOCK_SIZE];
TEA_BLOCK_SIZE    247 libavformat/aadec.c     uint8_t src[TEA_BLOCK_SIZE];
TEA_BLOCK_SIZE    281 libavformat/aadec.c     blocks = c->current_codec_second_size / TEA_BLOCK_SIZE;
TEA_BLOCK_SIZE    283 libavformat/aadec.c         ret = avio_read(s->pb, src, TEA_BLOCK_SIZE);
TEA_BLOCK_SIZE    284 libavformat/aadec.c         if (ret != TEA_BLOCK_SIZE)
TEA_BLOCK_SIZE    288 libavformat/aadec.c         memcpy(buf + written, dst, TEA_BLOCK_SIZE);
TEA_BLOCK_SIZE    289 libavformat/aadec.c         written = written + TEA_BLOCK_SIZE;
TEA_BLOCK_SIZE    291 libavformat/aadec.c     trailing_bytes = c->current_codec_second_size % TEA_BLOCK_SIZE;