Home | History | Annotate | Download | only in port

Lines Matching refs:position_

28       position_(0),
37 return length_ - position_;
44 position_ = 0;
73 position_ += length;
95 size_t read_count = std::min<size_t>(length_ - position_, length);
100 position_ += actual_read;
117 skip_count = std::max<int64_t>(0 - (int64_t)position_, n);
118 position_ -= (size_t)(0 - skip_count);
119 fseek(file_, position_, SEEK_SET);
121 skip_count = std::min<size_t>(length_ - position_, (size_t)n);
122 position_ += (size_t)skip_count;
141 size_t unread_count = std::min<size_t>(position_, length);
142 fseek(file_, position_ - unread_count, SEEK_SET);
143 position_ -= unread_count;
145 fseek(file_, position_ - unread_count, SEEK_SET);
146 position_ -= unread_count;