HomeSort by relevance Sort by last modified time
    Searched refs:bytes_to_go (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/components/rappor/
byte_vector_utils.cc 203 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/
fx_codec_flate.cpp 696 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;
    [all...]

Completed in 59 milliseconds