Lines Matching refs:shft
188 int shft; in LogL16Decode() local
213 for (shft = 2*8; (shft -= 8) >= 0; ) { in LogL16Decode()
217 b = (int16)(*bp++ << shft); in LogL16Decode()
224 tp[i++] |= (int16)*bp++ << shft; in LogL16Decode()
310 int shft; in LogLuvDecode32() local
336 for (shft = 4*8; (shft -= 8) >= 0; ) { in LogLuvDecode32()
340 b = (uint32)*bp++ << shft; in LogLuvDecode32()
347 tp[i++] |= (uint32)*bp++ << shft; in LogLuvDecode32()
417 int shft; in LogL16Encode() local
442 for (shft = 2*8; (shft -= 8) >= 0; ) in LogL16Encode()
452 mask = 0xff << shft; /* find next run */ in LogL16Encode()
468 *op++ = (uint8)(b >> shft); in LogL16Encode()
486 *op++ = (uint8) (tp[i++] >> shft & 0xff); in LogL16Encode()
492 *op++ = (uint8) (tp[beg] >> shft & 0xff); in LogL16Encode()
557 int shft; in LogLuvEncode32() local
583 for (shft = 4*8; (shft -= 8) >= 0; ) in LogLuvEncode32()
593 mask = 0xff << shft; /* find next run */ in LogLuvEncode32()
609 *op++ = (uint8)(b >> shft); in LogLuvEncode32()
627 *op++ = (uint8)(tp[i++] >> shft & 0xff); in LogLuvEncode32()
633 *op++ = (uint8)(tp[beg] >> shft & 0xff); in LogLuvEncode32()