Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/lbmp/
Dfx_bmp.cpp203 src_row_bytes = BMP_WIDTHBYTES(width, bitCounts); in ReadHeader()
208 out_row_bytes = BMP_WIDTHBYTES(width, 8); in ReadHeader()
213 out_row_bytes = BMP_WIDTHBYTES(width, 24); in ReadHeader()
Dfx_bmp.h17 #define BMP_WIDTHBYTES(width, bitCount) ((width * bitCount) + 31) / 32 * 4 macro