Home
last modified time | relevance | path

Searched refs:bytesExtracted (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
DImageDecoder.cpp37 unsigned bytesExtracted = 0; in copyFromSharedBuffer() local
40 unsigned bytesToCopy = std::min(bufferLength - bytesExtracted, moreDataLength); in copyFromSharedBuffer()
41 memcpy(buffer + bytesExtracted, moreData, bytesToCopy); in copyFromSharedBuffer()
42 bytesExtracted += bytesToCopy; in copyFromSharedBuffer()
43 if (bytesExtracted == bufferLength) in copyFromSharedBuffer()
47 return bytesExtracted; in copyFromSharedBuffer()