HomeSort by relevance Sort by last modified time
    Searched defs:BytesRemaining (Results 1 - 2 of 2) sorted by null

  /external/chromium/net/base/
io_buffer.cc 60 int DrainableIOBuffer::BytesRemaining() const {
  /external/llvm/lib/Support/
raw_ostream.cpp 309 size_t BytesRemaining = Size - BytesToWrite;
310 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) {
312 return write(Ptr + BytesToWrite, BytesRemaining);
314 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining);

Completed in 32 milliseconds