Home
last modified time | relevance | path

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

/external/skia/tools/
Dskdiff_utils.cpp34 size_t bytesLeftToRead = bytesInFile; in read_file() local
38 while (bytesLeftToRead > 0) { in read_file()
39 size_t bytesReadThisTime = fileStream.read(bufferPointer, bytesLeftToRead); in read_file()
45 bytesLeftToRead -= bytesReadThisTime; in read_file()
/external/chromium_org/third_party/skia/tools/
Dskdiff_utils.cpp34 size_t bytesLeftToRead = bytesInFile; in read_file() local
38 while (bytesLeftToRead > 0) { in read_file()
39 size_t bytesReadThisTime = fileStream.read(bufferPointer, bytesLeftToRead); in read_file()
45 bytesLeftToRead -= bytesReadThisTime; in read_file()
/external/skia/src/core/
DSkStream.cpp701 size_t bytesLeftToRead = count; in read() local
704 size_t bytesFromCurrent = SkTMin(bytesLeftToRead, bytesLeftInCurrent); in read()
709 if (bytesLeftToRead <= bytesFromCurrent) { in read()
714 bytesLeftToRead -= bytesFromCurrent; in read()
/external/chromium_org/third_party/skia/src/core/
DSkStream.cpp701 size_t bytesLeftToRead = count; in read() local
704 size_t bytesFromCurrent = SkTMin(bytesLeftToRead, bytesLeftInCurrent); in read()
709 if (bytesLeftToRead <= bytesFromCurrent) { in read()
714 bytesLeftToRead -= bytesFromCurrent; in read()