/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | jpegint.h | 297 #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
|
D | jidctfst.c | 150 #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))
|
D | jcarith.c | 111 #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
|
D | jcphuff.c | 142 #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/ |
D | jpegint.h | 294 #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
|
D | jidctfst.c | 150 #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))
|
D | jcarith.c | 111 #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
|
D | jcphuff.c | 137 #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/ |
D | jidctfst.c | 150 #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))
|
D | jpegint.h | 294 #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
|
D | jcarith.c | 111 #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
|
D | jcphuff.c | 137 #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/ |
D | af_hdcd.c | 1272 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()
|