Lines Matching defs:block
29 // encourage reads of 4096 bytes - 1 block is always retained.
93 "invalid %s size (%d bytes, block size is %d)\n",
103 "invalid %s size (%d bytes, block size is %d)\n",
196 // We avoid using the last block until we've found EOF,
236 int64_t block;
277 // identify the block containing the IV for the
278 // next block we will decrypt
279 block = pos/BLOCKSIZE;
280 if (block == 0) {
281 // restore the iv to the seed one - this is the iv for the FIRST block
285 // else, go back one block - we will get av_cyrpt to read this block
289 block--;
290 c->position = (block * BLOCKSIZE);