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

/external/chromium_org/components/rappor/
H A Dbyte_vector_utils.cc203 size_t bytes_to_go = byte_count(); local
204 while (bytes_to_go > 0) {
212 size_t n = std::min(bytes_to_go,
216 bytes_to_go -= n;
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_flate.cpp696 int bytes_to_go = m_Pitch; local
697 int read_leftover = m_LeftOver > bytes_to_go ? bytes_to_go : m_LeftOver;
701 bytes_to_go -= read_leftover;
703 while (bytes_to_go) {
712 int read_bytes = m_PredictPitch > bytes_to_go ? bytes_to_go : m_PredictPitch;
713 FXSYS_memcpy32(m_pScanline + m_Pitch - bytes_to_go, m_pPredictBuffer, read_bytes);
715 bytes_to_go -= read_bytes;

Completed in 237 milliseconds