Lines Matching defs:pos
390 static int64_t async_seek(URLContext *h, int64_t pos, int whence)
403 av_log(h, AV_LOG_TRACE, "async_seek: %"PRId64"\n", pos);
404 new_logical_pos = pos + c->logical_pos;
406 av_log(h, AV_LOG_TRACE, "async_seek: %"PRId64"\n", pos);
407 new_logical_pos = pos;
552 static int64_t async_test_seek(URLContext *h, int64_t pos, int whence)
560 new_logical_pos = pos + c->logical_pos;
562 new_logical_pos = pos;
608 int64_t pos;
626 pos = ffurl_seek(h, 0, SEEK_CUR);
641 if (buf[i] != (pos & 0xFF)) {
643 (int)buf[i], (int)(pos & 0xFF), pos);
646 pos++;
660 pos = ffurl_seek(h, TEST_SEEK_POS, SEEK_SET);
661 printf("seek: %"PRId64"\n", pos);
675 if (buf[i] != (pos & 0xFF)) {
677 (int)buf[i], (int)(pos & 0xFF), pos);
680 pos++;