Searched refs:bytes_to_go (Results 1 – 2 of 2) sorted by relevance
203 size_t bytes_to_go = byte_count(); in GetRandomByteVector() local204 while (bytes_to_go > 0) { in GetRandomByteVector()212 size_t n = std::min(bytes_to_go, in GetRandomByteVector()216 bytes_to_go -= n; in GetRandomByteVector()
696 int bytes_to_go = m_Pitch; in v_GetNextLine() local697 int read_leftover = m_LeftOver > bytes_to_go ? bytes_to_go : m_LeftOver; in v_GetNextLine()701 bytes_to_go -= read_leftover; in v_GetNextLine()703 while (bytes_to_go) { in v_GetNextLine()712 int read_bytes = m_PredictPitch > bytes_to_go ? bytes_to_go : m_PredictPitch; in v_GetNextLine()713 FXSYS_memcpy32(m_pScanline + m_Pitch - bytes_to_go, m_pPredictBuffer, read_bytes); in v_GetNextLine()715 bytes_to_go -= read_bytes; in v_GetNextLine()