OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_bytestoconsume
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.cpp
92
m_bytesToConsume
= (n); \
394
if (len <
m_bytesToConsume
)
398
// At the beginning of each iteration, dataPosition will be advanced by
m_bytesToConsume
to
400
while (len >=
m_bytesToConsume
) {
406
dataPosition +=
m_bytesToConsume
;
407
len -=
m_bytesToConsume
;
412
//
m_bytesToConsume
is the current component size because it hasn't been updated.
413
m_frames.last()->addLzwBlock(currentComponentPosition,
m_bytesToConsume
);
579
if (
m_bytesToConsume
== 11
GIFImageReader.h
284
,
m_bytesToConsume
(6) // Number of bytes for GIF type, either "GIF87a" or "GIF89a".
347
size_t
m_bytesToConsume
; // Number of bytes to consume for next stage of parsing.
Completed in 135 milliseconds