Lines Matching defs:pos
31 int64_t pos;
58 if ((ret = ffurl_seek(c->h, c->pos, SEEK_SET)) != c->pos) {
86 c->pos = c->start;
103 int64_t rest = c->end - c->pos;
111 c->pos += ret;
115 static int64_t subfile_seek(URLContext *h, int64_t pos, int whence)
131 new_pos = c->start + pos;
134 new_pos = c->pos + pos;
137 new_pos = end + pos;
142 c->pos = new_pos;
145 return c->pos - c->start;