Searched refs:shft (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djidctfst.c151 #define IRIGHT_SHIFT(x,shft) \
153 (ishift_temp >> (shft)) | ((~((DCTELEM) 0)) << (DCTELEMBITS-(shft))) : \
154 (ishift_temp >> (shft)))
157 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft))
H A Djpegint.h288 #define RIGHT_SHIFT(x,shft) \
290 (shift_temp >> (shft)) | ((~((INT32) 0)) << (32-(shft))) : \
291 (shift_temp >> (shft)))
294 #define RIGHT_SHIFT(x,shft) ((x) >> (shft))
H A Djcphuff.c83 #define IRIGHT_SHIFT(x,shft) \
85 (ishift_temp >> (shft)) | ((~0) << (16-(shft))) : \
86 (ishift_temp >> (shft)))
89 #define IRIGHT_SHIFT(x,shft) ((x) >> (shft))
/openjdk7/hotspot/src/share/vm/libadt/
H A Ddict.cpp50 static const char shft[MAXID] = {1,2,3,4,5,6,7,1,2,3,4,5,6,7,1,2,3,4,5,6}; variable
75 xsum[0] = (1<<shft[0])+1; // Initialize
77 xsum[i] = (1<<shft[i])+1+xsum[i-1];
94 xsum[0] = (1<<shft[0])+1; // Initialize
96 xsum[i] = (1<<shft[i])+1+xsum[i-1];
326 sum += c + (c<<shft[k++]); // Universal hash function
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddict2.cpp36 static char shft[MAXID + 1] = {1,2,3,4,5,6,7,1,2,3,4,5,6,7,1,2,3,4,5,6,7}; variable
68 xsum[0] = (1<<shft[0])+1; // Initialize
70 xsum[i] = (1<<shft[i])+1+xsum[i-1];
292 sum += c + (c<<shft[k++]); // Universal hash function

Completed in 28 milliseconds