Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxcodec/codec/
Dfx_codec_tiff.cpp406 uint8_t* bitMapbuffer = (uint8_t*)pDIBitmap->GetBuffer(); in Decode1bppRGB() local
411 bitMapbuffer[row * pitch + j] = buf[j]; in Decode1bppRGB()
433 uint8_t* bitMapbuffer = (uint8_t*)pDIBitmap->GetBuffer(); in Decode8bppRGB() local
440 bitMapbuffer[row * pitch + 2 * j + 0] = (buf[j] & 0xF0) >> 4; in Decode8bppRGB()
441 bitMapbuffer[row * pitch + 2 * j + 1] = (buf[j] & 0x0F) >> 0; in Decode8bppRGB()
444 bitMapbuffer[row * pitch + j] = buf[j]; in Decode8bppRGB()
466 uint8_t* bitMapbuffer = (uint8_t*)pDIBitmap->GetBuffer(); in Decode24bppRGB() local
471 bitMapbuffer[row * pitch + j + 0] = buf[j + 2]; in Decode24bppRGB()
472 bitMapbuffer[row * pitch + j + 1] = buf[j + 1]; in Decode24bppRGB()
473 bitMapbuffer[row * pitch + j + 2] = buf[j + 0]; in Decode24bppRGB()