Home | History | Annotate | Download | only in libtiff

Lines Matching full:uint8

41 	if (!(tif->tif_data = (uint8*)_TIFFmalloc(sizeof(tmsize_t))))
65 PackBitsEncode(TIFF* tif, uint8* buf, tmsize_t cc, uint16 s)
68 uint8* op;
69 uint8* ep;
70 uint8* lastliteral;
116 *op++ = (uint8) -127;
117 *op++ = (uint8) b;
121 *op++ = (uint8)(-(n-1));
122 *op++ = (uint8) b;
126 *op++ = (uint8) b;
134 *op++ = (uint8) -127;
135 *op++ = (uint8) b;
139 *op++ = (uint8)(-(n-1)); /* encode run */
140 *op++ = (uint8) b;
144 *op++ = (uint8) b;
150 *op++ = (uint8) -127;
151 *op++ = (uint8) b;
155 *op++ = (uint8)(-(n-1));
156 *op++ = (uint8) b;
160 *op++ = (uint8) b;
171 if (n == 1 && op[-2] == (uint8) -1 &&
194 PackBitsEncodeChunk(TIFF* tif, uint8* bp, tmsize_t cc, uint16 s)
213 PackBitsDecode(TIFF* tif, uint8* op, tmsize_t occ, uint16 s)
246 *op++ = (uint8) b;
266 tif->tif_rawcp = (uint8*) bp;