Home
last modified time | relevance | path

Searched refs:bytes_remain_in_buf (Results 1 – 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/core/lib/io/
Dinputbuffer.cc211 const int64 bytes_remain_in_buf = static_cast<int64>(limit_ - pos_); in Hint() local
214 if (bytes_to_read <= bytes_remain_in_buf) { in Hint()
219 memmove(buf_, pos_, bytes_remain_in_buf); in Hint()
221 limit_ = buf_ + bytes_remain_in_buf; in Hint()
222 bytes_to_read -= bytes_remain_in_buf; in Hint()