Lines Matching refs:uint8
67 static uint8* thumbnail;
112 thumbnail = (uint8*) _TIFFmalloc(tnw * tnh); in main()
388 static uint8* src0; /* horizontal bit stepping (start) */
389 static uint8* src1; /* horizontal bit stepping (middle) */
390 static uint8* src2; /* horizontal bit stepping (end) */
392 static uint8 cmap[256]; /* colormap indexes */
393 static uint8 bits[256]; /* count of bits set */
464 src0 = (uint8*) _TIFFmalloc(sizeof (uint8) * tnw); in initScale()
465 src1 = (uint8*) _TIFFmalloc(sizeof (uint8) * tnw); in initScale()
466 src2 = (uint8*) _TIFFmalloc(sizeof (uint8) * tnw); in initScale()
487 uint8 b; in setupStepTables()
512 setrow(uint8* row, uint32 nrows, const uint8* rows[]) in setrow()
524 const uint8* src = rows[y] + off; in setrow()
554 setImage1(const uint8* br, uint32 rw, uint32 rh) in setImage1()
561 uint8* row = thumbnail; in setImage1()
564 const uint8* rows[256]; in setImage1()
587 setImage(const uint8* br, uint32 rw, uint32 rh) in setImage()