Home
last modified time | relevance | path

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

/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/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.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
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/
Djpegint.h296 #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
Djdct.h402 #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
Djcarith.c105 #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
Djchuff.c145 #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/
Dlpt.c556 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 …]
Dlpt_commit.c628 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/
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 <<= shft; in hdcd_envelope()
1293 samples[i * stride] <<= shft; in hdcd_envelope()