Home
last modified time | relevance | path

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

/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/
A Dtif_luv.c189 int shft; in LogL16Decode() local
218 for (shft = 2*8; (shft -= 8) >= 0; ) { in LogL16Decode()
224 b = (int16)(*bp++ << shft); in LogL16Decode()
322 int shft; in LogLuvDecode32() local
352 for (shft = 4*8; (shft -= 8) >= 0; ) { in LogLuvDecode32()
358 b = (uint32)*bp++ << shft; in LogLuvDecode32()
441 int shft; in LogL16Encode() local
470 for (shft = 2*8; (shft -= 8) >= 0; ) in LogL16Encode()
496 *op++ = (uint8)(b >> shft); in LogL16Encode()
591 int shft; in LogLuvEncode32() local
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Djpegint.h283 #define RIGHT_SHIFT(x,shft) \ argument
285 (shift_temp >> (shft)) | ((~((INT32) 0)) << (32-(shft))) : \
286 (shift_temp >> (shft)))
289 #define RIGHT_SHIFT(x,shft) ((x) >> (shft)) argument
A Djdct.h410 #define IRIGHT_SHIFT(x,shft) \ argument
412 (ishift_temp >> (shft)) | ((~((DCTELEM) 0)) << (DCTELEMBITS-(shft))) : \
413 (ishift_temp >> (shft)))
416 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft)) argument
A 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
A 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
/AliOS-Things-master/components/py_engine/engine/py/
A Dmpz.c780 int dig_ind, shft; in mpz_set_from_float() local
784 shft = 0; in mpz_set_from_float()
788 shft = (rem - MP_FLOAT_FRAC_BITS) % DIG_SIZE; in mpz_set_from_float()
796 if (shft != 0) { in mpz_set_from_float()
797 z->dig[dig_ind++] = (frc << shft) & DIG_MASK; in mpz_set_from_float()
798 frc >>= DIG_SIZE - shft; in mpz_set_from_float()

Completed in 15 milliseconds