Searched refs:bytesToSkip (Results 1 - 4 of 4) sorted by relevance

/external/skia/src/images/
H A DSkJpegUtility.cpp59 long bytesToSkip = num_bytes - src->bytes_in_buffer; local
60 while (bytesToSkip > 0) {
61 long bytes = (long)src->fStream->skip(bytesToSkip);
62 if (bytes <= 0 || bytes > bytesToSkip) {
63 // SkDebugf("xxxxxxxxxxxxxx failure to skip request %d returned %d\n", bytesToSkip, bytes);
68 bytesToSkip -= bytes;
/external/skia/src/ports/
H A DSkFontHost_tables.cpp194 size_t bytesToSkip = realOffset + offset; local
195 if (stream->skip(bytesToSkip) != bytesToSkip) {
/external/quake/src/com/android/quake/
H A DDownloaderActivity.java614 long bytesToSkip = 0;
617 bytesToSkip = dest.length();
618 mDownloadedSize += bytesToSkip;
626 if ((part.size > bytesToSkip) || (part.size == 0)) {
630 if (bytesToSkip > 0) {
634 readIntoDigest(is, bytesToSkip, digest);
643 downloadPart(part.src, os, bytesToSkip,
660 bytesToSkip -= Math.min(bytesToSkip, part.size);
846 long bytesToSkip
[all...]
/external/webkit/Source/WebCore/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.cpp175 long bytesToSkip = std::min(numBytes, (long)src->pub.bytes_in_buffer); local
176 src->pub.bytes_in_buffer -= (size_t)bytesToSkip;
177 src->pub.next_input_byte += bytesToSkip;
179 m_bytesToSkip = std::max(numBytes - bytesToSkip, static_cast<long>(0));

Completed in 108 milliseconds