Lines Matching defs:pos
233 static int64_t crypto_seek(URLContext *h, int64_t pos, int whence)
253 pos = pos + c->position;
256 newpos = ffurl_seek( c->hd, pos, AVSEEK_SIZE );
259 "Crypto: seek_end - can't get file size (pos=%lld)\r\n", (long long int)pos);
262 pos = newpos - pos;
265 return ffurl_seek( c->hd, pos, AVSEEK_SIZE );
279 block = pos/BLOCKSIZE;
302 if (pos - c->position) {
303 uint8_t buff[BLOCKSIZE*2]; // maximum size of pos-c->position
304 int len = pos - c->position;