Home
last modified time | relevance | path

Searched refs:shft (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/libjpeg-turbo/
Djpegint.h297 #define RIGHT_SHIFT(x, shft) \ argument
299 (shift_temp >> (shft)) | ((~((JLONG)0)) << (32 - (shft))) : \
300 (shift_temp >> (shft)))
303 #define RIGHT_SHIFT(x, shft) ((x) >> (shft)) argument
Djidctfst.c150 #define IRIGHT_SHIFT(x, shft) \ argument
152 (ishift_temp >> (shft)) | ((~((DCTELEM)0)) << (DCTELEMBITS - (shft))) : \
153 (ishift_temp >> (shft)))
156 #define IRIGHT_SHIFT(x, shft) ((x) >> (shft))
Djcarith.c111 #define IRIGHT_SHIFT(x, shft) \ argument
113 (ishift_temp >> (shft)) | ((~0) << (16 - (shft))) : \
114 (ishift_temp >> (shft)))
117 #define IRIGHT_SHIFT(x, shft) ((x) >> (shft)) argument
Djcphuff.c142 #define IRIGHT_SHIFT(x, shft) \ argument
144 (ishift_temp >> (shft)) | ((~0) << (16 - (shft))) : \
145 (ishift_temp >> (shft)))
148 #define IRIGHT_SHIFT(x, shft) ((x) >> (shft)) argument
/third_party/libjpeg-turbo/
Djpegint.h294 #define RIGHT_SHIFT(x, shft) \ argument
296 (shift_temp >> (shft)) | ((~((JLONG)0)) << (32 - (shft))) : \
297 (shift_temp >> (shft)))
300 #define RIGHT_SHIFT(x, shft) ((x) >> (shft)) argument
Djidctfst.c150 #define IRIGHT_SHIFT(x, shft) \ argument
152 (ishift_temp >> (shft)) | ((~((DCTELEM)0)) << (DCTELEMBITS - (shft))) : \
153 (ishift_temp >> (shft)))
156 #define IRIGHT_SHIFT(x, shft) ((x) >> (shft))
Djcarith.c111 #define IRIGHT_SHIFT(x, shft) \ argument
113 (ishift_temp >> (shft)) | ((~0) << (16 - (shft))) : \
114 (ishift_temp >> (shft)))
117 #define IRIGHT_SHIFT(x, shft) ((x) >> (shft)) argument
Djcphuff.c137 #define IRIGHT_SHIFT(x, shft) \ argument
139 (ishift_temp >> (shft)) | ((~0) << (16 - (shft))) : \
140 (ishift_temp >> (shft)))
143 #define IRIGHT_SHIFT(x, shft) ((x) >> (shft)) argument
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/
Djidctfst.c150 #define IRIGHT_SHIFT(x, shft) \ argument
152 (ishift_temp >> (shft)) | ((~((DCTELEM)0)) << (DCTELEMBITS - (shft))) : \
153 (ishift_temp >> (shft)))
156 #define IRIGHT_SHIFT(x, shft) ((x) >> (shft))
Djpegint.h294 #define RIGHT_SHIFT(x, shft) \ argument
296 (shift_temp >> (shft)) | ((~((JLONG)0)) << (32 - (shft))) : \
297 (shift_temp >> (shft)))
300 #define RIGHT_SHIFT(x, shft) ((x) >> (shft)) argument
Djcarith.c111 #define IRIGHT_SHIFT(x, shft) \ argument
113 (ishift_temp >> (shft)) | ((~0) << (16 - (shft))) : \
114 (ishift_temp >> (shft)))
117 #define IRIGHT_SHIFT(x, shft) ((x) >> (shft)) argument
Djcphuff.c137 #define IRIGHT_SHIFT(x, shft) \ argument
139 (ishift_temp >> (shft)) | ((~0) << (16 - (shft))) : \
140 (ishift_temp >> (shft)))
143 #define IRIGHT_SHIFT(x, shft) ((x) >> (shft)) argument
/third_party/ffmpeg/libavfilter/
Daf_hdcd.c1272 int pe_level = PEAK_EXT_LEVEL, shft = 15; in hdcd_envelope() local
1275 shft = 32 - vbits - 1; in hdcd_envelope()
1287 sample *= (1 << shft); in hdcd_envelope()
1293 samples[i * stride] *= (1 << shft); in hdcd_envelope()