Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/flate/
Dflatemodule.cpp746 size_t bytes_to_go = m_Pitch; in GetNextLineWithoutPredictedPitch() local
747 size_t read_leftover = m_LeftOver > bytes_to_go ? bytes_to_go : m_LeftOver; in GetNextLineWithoutPredictedPitch()
752 bytes_to_go -= read_leftover; in GetNextLineWithoutPredictedPitch()
754 while (bytes_to_go) { in GetNextLineWithoutPredictedPitch()
773 m_PredictPitch > bytes_to_go ? bytes_to_go : m_PredictPitch; in GetNextLineWithoutPredictedPitch()
774 memcpy(m_pScanline.get() + m_Pitch - bytes_to_go, m_PredictBuffer.data(), in GetNextLineWithoutPredictedPitch()
777 bytes_to_go -= read_bytes; in GetNextLineWithoutPredictedPitch()