Searched refs:appendSize (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | StreamBuffer.h | 64 size_t appendSize = std::min(BlockSize - m_buffer.last()->size(), size); in append() local 65 m_buffer.last()->append(data, appendSize); in append() 66 data += appendSize; in append() 67 size -= appendSize; in append()
|
/external/chromium_org/tools/perf/page_sets/mse_cases/ |
D | startup_test.js | 41 testParams.appendSize = parseInt(queryParameters["appendSize"] || "65536"); 172 document.getElementById("appendSize").value = testParams.appendSize; 176 function BufferAppender(mimetype, url, id, startOffset, appendSize) { argument 181 this.appendSize = appendSize; 190 (this.startOffset + this.appendSize - 1)); 249 function StreamAppender(mimetype, url, id, startOffset, appendSize) { argument 254 this.appendSize = appendSize; 266 (this.startOffset + this.appendSize - 1)); 472 testParams.appendSize)); 481 testParams.appendSize));
|
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/ |
D | SourceBuffer.cpp | 546 size_t appendSize = m_pendingAppendData.size() - m_pendingAppendDataOffset; in appendBufferAsyncPart() local 554 if (appendSize > MaxAppendSize) in appendBufferAsyncPart() 555 appendSize = MaxAppendSize; in appendBufferAsyncPart() 557 … "SourceBuffer::appendBuffer", this, "appending", "appendSize", static_cast<unsigned>(appendSize)); in appendBufferAsyncPart() 564 if (appendSize) in appendBufferAsyncPart() 567 m_webSourceBuffer->append(appendData, appendSize, &m_timestampOffset); in appendBufferAsyncPart() 569 m_pendingAppendDataOffset += appendSize; in appendBufferAsyncPart()
|