Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxge/dib/
Dfx_dib_composite.cpp4865 uint8_t* dest_scan_top = (uint8_t*)GetScanline(row) + rect.left / 8; in CompositeRect() local
4867 uint8_t left_flag = *dest_scan_top & (255 << (8 - left_shift)); in CompositeRect()
4870 FXSYS_memset(dest_scan_top + 1, index ? 255 : 0, width - 1); in CompositeRect()
4872 *dest_scan_top &= left_flag; in CompositeRect()
4875 *dest_scan_top |= ~left_flag; in CompositeRect()
4880 *dest_scan_top &= left_flag | right_flag; in CompositeRect()
4882 *dest_scan_top |= ~(left_flag | right_flag); in CompositeRect()