Home | History | Annotate | Download | only in src

Lines Matching refs:shift

63   int result, shift;
65 shift = (value > 0xFFFF) << 4;
66 value >>= shift;
67 result = shift;
69 shift = (value > 0xFF) << 3;
70 value >>= shift;
71 result |= shift;
73 shift = (value > 0xF) << 2;
74 value >>= shift;
75 result |= shift;
77 shift = (value > 0x3) << 1;
78 value >>= shift;
79 result |= shift;