Home | History | Annotate | Download | only in libtiff

Lines Matching refs:TIFFBitRevTable

202  * Bit reversal tables.  TIFFBitRevTable[<byte>] gives
210 static const unsigned char TIFFBitRevTable[256] = {
282 return (reversed ? TIFFBitRevTable : TIFFNoBitRevTable);
289 cp[0] = TIFFBitRevTable[cp[0]];
290 cp[1] = TIFFBitRevTable[cp[1]];
291 cp[2] = TIFFBitRevTable[cp[2]];
292 cp[3] = TIFFBitRevTable[cp[3]];
293 cp[4] = TIFFBitRevTable[cp[4]];
294 cp[5] = TIFFBitRevTable[cp[5]];
295 cp[6] = TIFFBitRevTable[cp[6]];
296 cp[7] = TIFFBitRevTable[cp[7]];
300 *cp = TIFFBitRevTable[*cp], cp++;