HomeSort by relevance Sort by last modified time
    Searched refs:m_totalBytes (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderLoader.cpp 65 , m_totalBytes(-1)
177 m_totalBytes = response.expectedContentLength();
181 if (m_totalBytes >= 0) {
182 initialBufferLength = m_totalBytes;
184 // Set m_totalBytes and allocate a buffer based on the specified range.
185 m_totalBytes = 1LL + m_rangeEnd - m_rangeStart;
186 initialBufferLength = m_totalBytes;
189 // m_totalBytes to -1 and initialize the buffer for receiving with the
191 m_totalBytes = -1;
261 if (m_totalBytes == -1)
    [all...]
FileReaderLoader.h 94 long long totalBytes() const { return m_totalBytes; }
131 // If the total size of the resource is unknown, m_totalBytes is set to -1
133 // dynamically grow. Otherwise, m_totalBytes is set to the total size and
134 // the buffer for receiving data of m_totalBytes is allocated and never grow
136 long long m_totalBytes;
  /external/chromium_org/third_party/WebKit/Source/wtf/
SHA1.h 70 uint64_t m_totalBytes; // Number of bytes added so far.
SHA1.cpp 82 ++m_totalBytes;
121 uint64_t bits = m_totalBytes * 8;
167 m_totalBytes = 0;

Completed in 91 milliseconds