Searched refs:shft (Results 1 – 6 of 6) sorted by relevance
189 int shft; in LogL16Decode() local218 for (shft = 2*8; (shft -= 8) >= 0; ) { in LogL16Decode()224 b = (int16)(*bp++ << shft); in LogL16Decode()322 int shft; in LogLuvDecode32() local352 for (shft = 4*8; (shft -= 8) >= 0; ) { in LogLuvDecode32()358 b = (uint32)*bp++ << shft; in LogLuvDecode32()441 int shft; in LogL16Encode() local470 for (shft = 2*8; (shft -= 8) >= 0; ) in LogL16Encode()496 *op++ = (uint8)(b >> shft); in LogL16Encode()591 int shft; in LogLuvEncode32() local[all …]
283 #define RIGHT_SHIFT(x,shft) \ argument285 (shift_temp >> (shft)) | ((~((INT32) 0)) << (32-(shft))) : \286 (shift_temp >> (shft)))289 #define RIGHT_SHIFT(x,shft) ((x) >> (shft)) argument
410 #define IRIGHT_SHIFT(x,shft) \ argument412 (ishift_temp >> (shft)) | ((~((DCTELEM) 0)) << (DCTELEMBITS-(shft))) : \413 (ishift_temp >> (shft)))416 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft)) argument
105 #define IRIGHT_SHIFT(x,shft) \ argument107 (ishift_temp >> (shft)) | ((~0) << (16-(shft))) : \108 (ishift_temp >> (shft)))111 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft)) argument
145 #define IRIGHT_SHIFT(x,shft) \ argument147 (ishift_temp >> (shft)) | ((~0) << (16-(shft))) : \148 (ishift_temp >> (shft)))151 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft)) argument
780 int dig_ind, shft; in mpz_set_from_float() local784 shft = 0; in mpz_set_from_float()788 shft = (rem - MP_FLOAT_FRAC_BITS) % DIG_SIZE; in mpz_set_from_float()796 if (shft != 0) { in mpz_set_from_float()797 z->dig[dig_ind++] = (frc << shft) & DIG_MASK; in mpz_set_from_float()798 frc >>= DIG_SIZE - shft; in mpz_set_from_float()
Completed in 15 milliseconds