Lines Matching defs:position
40 int64_t position; // position in file - used in seek
193 c->position = c->position + size;
253 pos = pos + c->position;
283 c->position = 0;
290 c->position = (block * BLOCKSIZE);
293 newpos = ffurl_seek( c->hd, c->position, SEEK_SET );
300 // read and discard from here up to required position
302 if (pos - c->position) {
303 uint8_t buff[BLOCKSIZE*2]; // maximum size of pos-c->position
304 int len = pos - c->position;
326 return c->position;