Searched refs:shft (Results 1 – 5 of 5) sorted by relevance
150 #define IRIGHT_SHIFT(x, shft) \ argument152 (ishift_temp >> (shft)) | ((~((DCTELEM)0)) << (DCTELEMBITS - (shft))) : \153 (ishift_temp >> (shft)))156 #define IRIGHT_SHIFT(x, shft) ((x) >> (shft))
297 #define RIGHT_SHIFT(x, shft) \ argument299 (shift_temp >> (shft)) | ((~((JLONG)0)) << (32 - (shft))) : \300 (shift_temp >> (shft)))303 #define RIGHT_SHIFT(x, shft) ((x) >> (shft)) argument
111 #define IRIGHT_SHIFT(x, shft) \ argument113 (ishift_temp >> (shft)) | ((~0) << (16 - (shft))) : \114 (ishift_temp >> (shft)))117 #define IRIGHT_SHIFT(x, shft) ((x) >> (shft)) argument
142 #define IRIGHT_SHIFT(x, shft) \ argument144 (ishift_temp >> (shft)) | ((~0) << (16 - (shft))) : \145 (ishift_temp >> (shft)))148 #define IRIGHT_SHIFT(x, shft) ((x) >> (shft)) argument
1272 int pe_level = PEAK_EXT_LEVEL, shft = 15; in hdcd_envelope() local1275 shft = 32 - vbits - 1; in hdcd_envelope()1287 sample *= (1 << shft); in hdcd_envelope()1293 samples[i * stride] *= (1 << shft); in hdcd_envelope()