Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/
Dprogressivedecoder.cpp142 int dest_col = FXSYS_roundf((float)dest_col_f); in Calc() local
143 PixelWeight* pWeight = GetPixelWeight(dest_col); in Calc()
147 if (src_col == src_len - 1 && dest_col < dest_len - 1) { in Calc()
157 int dest_col_len = dest_col - pre_dest_col; in Calc()
158 for (int dest_col_index = pre_dest_col + 1; dest_col_index < dest_col; in Calc()
164 FXSYS_roundf((float)(((float)dest_col - (float)dest_col_index) / in Calc()
168 pre_dest_col = dest_col; in Calc()
172 for (int dest_col = 0; dest_col < dest_len; dest_col++) { in Calc() local
173 double src_col_f = dest_col / scale; in Calc()
175 PixelWeight* pWeight = GetPixelWeight(dest_col); in Calc()
[all …]
/external/pdfium/core/fxge/dib/
Dcfx_dibbase.cpp1021 int dest_col = m_Width - col - 1; in FlipImage() local
1022 dest_scan[dest_col / 8] |= (1 << (7 - dest_col % 8)); in FlipImage()
1136 int dest_col = (bXFlip ? dest_clip.right - (row - row_start) - 1 : row) - in SwapXY() local
1144 dest_scan[dest_col / 8] &= ~(1 << (7 - dest_col % 8)); in SwapXY()
1154 int dest_col = (bXFlip ? dest_clip.right - (row - row_start) - 1 : row) - in SwapXY() local
1156 uint8_t* dest_scan = dest_buf + dest_col * nBytes; in SwapXY()
1190 int dest_col = (bXFlip ? dest_clip.right - (row - row_start) - 1 : row) - in SwapXY() local
1192 uint8_t* dest_scan = dest_buf + dest_col; in SwapXY()