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

  /external/lzma/CPP/Common/
Buffer.h 26 size_t GetCapacity() const { return _capacity; }
59 if (b1.GetCapacity() != b2.GetCapacity())
61 for (size_t i = 0; i < b1.GetCapacity(); i++)
  /external/chromium_org/net/server/
http_connection.cc 23 int HttpConnection::ReadIOBuffer::GetCapacity() const {
34 if (GetCapacity() >= max_buffer_size_) {
35 LOG(ERROR) << "Too large read data is pending: capacity=" << GetCapacity()
41 int new_capacity = GetCapacity() * kCapacityIncreaseFactor;
78 if (GetCapacity() > kMinimumBufSize &&
79 GetCapacity() > previous_size * kCapacityIncreaseFactor) {
80 int new_capacity = GetCapacity() / kCapacityIncreaseFactor;
  /external/lzma/CPP/7zip/Common/
StreamObjects.h 34 void Init(CReferenceBuf *ref) { Init(ref->Buf, ref->Buf.GetCapacity(), ref); }
50 size_t GetCapacity() const { return _capacity; }

Completed in 271 milliseconds