OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:appendSize
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
StreamBuffer.h
64
size_t
appendSize
= std::min(BlockSize - m_buffer.last()->size(), size);
65
m_buffer.last()->append(data,
appendSize
);
66
data +=
appendSize
;
67
size -=
appendSize
;
/external/chromium_org/tools/perf/page_sets/mse_cases/
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
) {
181
this.
appendSize
=
appendSize
;
190
(this.startOffset + this.
appendSize
- 1));
249
function StreamAppender(mimetype, url, id, startOffset,
appendSize
) {
254
this.
appendSize
= appendSize
[
all
...]
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
SourceBuffer.cpp
546
size_t
appendSize
= m_pendingAppendData.size() - m_pendingAppendDataOffset;
554
if (
appendSize
> MaxAppendSize)
555
appendSize
= MaxAppendSize;
557
TRACE_EVENT_ASYNC_STEP_INTO1("media", "SourceBuffer::appendBuffer", this, "appending", "
appendSize
", static_cast<unsigned>(
appendSize
));
564
if (
appendSize
)
567
m_webSourceBuffer->append(appendData,
appendSize
, &m_timestampOffset);
569
m_pendingAppendDataOffset +=
appendSize
;
Completed in 161 milliseconds