/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/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 | 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 | 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/ |
D | jpegint.h | 296 #define RIGHT_SHIFT(x,shft) \ argument 298 (shift_temp >> (shft)) | ((~((INT32) 0)) << (32-(shft))) : \ 299 (shift_temp >> (shft))) 302 #define RIGHT_SHIFT(x,shft) ((x) >> (shft)) argument
|
D | jdct.h | 402 #define IRIGHT_SHIFT(x,shft) \ argument 404 (ishift_temp >> (shft)) | ((~((DCTELEM) 0)) << (DCTELEMBITS-(shft))) : \ 405 (ishift_temp >> (shft))) 408 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft)) argument
|
D | jcarith.c | 105 #define IRIGHT_SHIFT(x,shft) \ argument 107 (ishift_temp >> (shft)) | ((~0) << (16-(shft))) : \ 108 (ishift_temp >> (shft))) 111 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft)) argument
|
D | jchuff.c | 145 #define IRIGHT_SHIFT(x,shft) \ argument 147 (ishift_temp >> (shft)) | ((~0) << (16-(shft))) : \ 148 (ishift_temp >> (shft))) 151 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft)) argument
|
/third_party/uboot/u-boot-2020.01/fs/ubifs/ |
D | lpt.c | 556 int num, shft; in calc_nnode_num_from_parent() local 560 shft = (c->lpt_hght - parent->level) * UBIFS_LPT_FANOUT_SHIFT; in calc_nnode_num_from_parent() 561 num = parent->num ^ (1 << shft); in calc_nnode_num_from_parent() 562 num |= (UBIFS_LPT_FANOUT + iip) << shft; in calc_nnode_num_from_parent() 1447 int err, i, h, iip, shft; in ubifs_lpt_lookup() local 1458 shft = c->lpt_hght * UBIFS_LPT_FANOUT_SHIFT; in ubifs_lpt_lookup() 1460 iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1)); in ubifs_lpt_lookup() 1461 shft -= UBIFS_LPT_FANOUT_SHIFT; in ubifs_lpt_lookup() 1466 iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1)); in ubifs_lpt_lookup() 1580 int err, i, h, iip, shft; in ubifs_lpt_lookup_dirty() local [all …]
|
D | lpt_commit.c | 628 int err, h, iip, shft; in pnode_lookup() local 638 shft = c->lpt_hght * UBIFS_LPT_FANOUT_SHIFT; in pnode_lookup() 640 iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1)); in pnode_lookup() 641 shft -= UBIFS_LPT_FANOUT_SHIFT; in pnode_lookup() 646 iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1)); in pnode_lookup()
|
/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 <<= shft; in hdcd_envelope() 1293 samples[i * stride] <<= shft; in hdcd_envelope()
|