Home
last modified time | relevance | path

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

/libtiff-4.0.7/contrib/dbs/xtiff/
H A Dxtiff.c235 unsigned char basePixel = 0; variable
663 basePixel = (unsigned char) pixels[0]; in GetVisual()
823 *output_p++ = (*input_p >> 4) + basePixel; in GetTIFFImage()
824 *output_p++ = (*input_p & 0xf) + basePixel; in GetTIFFImage()
838 *output_p++ = (*input_p >> 6) + basePixel; in GetTIFFImage()
839 *output_p++ = ((*input_p >> 4) & 3) + basePixel; in GetTIFFImage()
840 *output_p++ = ((*input_p >> 2) & 3) + basePixel; in GetTIFFImage()
841 *output_p++ = (*input_p & 3) + basePixel; in GetTIFFImage()
856 | ((*input_p >> 4) & 3)) + basePixel; in GetTIFFImage()
858 | (*input_p & 3)) + basePixel; in GetTIFFImage()