Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/tiff/
Dtiffmodule.cpp367 uint8_t* bitMapbuffer = (uint8_t*)pDIBitmap->GetBuffer(); in Decode1bppRGB() local
372 bitMapbuffer[row * pitch + j] = buf[j]; in Decode1bppRGB()
395 uint8_t* bitMapbuffer = (uint8_t*)pDIBitmap->GetBuffer(); in Decode8bppRGB() local
402 bitMapbuffer[row * pitch + 2 * j + 0] = (buf[j] & 0xF0) >> 4; in Decode8bppRGB()
403 bitMapbuffer[row * pitch + 2 * j + 1] = (buf[j] & 0x0F) >> 0; in Decode8bppRGB()
406 bitMapbuffer[row * pitch + j] = buf[j]; in Decode8bppRGB()
429 uint8_t* bitMapbuffer = (uint8_t*)pDIBitmap->GetBuffer(); in Decode24bppRGB() local
434 bitMapbuffer[row * pitch + j + 0] = buf[j + 2]; in Decode24bppRGB()
435 bitMapbuffer[row * pitch + j + 1] = buf[j + 1]; in Decode24bppRGB()
436 bitMapbuffer[row * pitch + j + 2] = buf[j + 0]; in Decode24bppRGB()