Home | History | Annotate | Download | only in src

Lines Matching defs:shift

40   int result, shift;
42 shift = (value > 0xFFFF) << 4;
43 value >>= shift;
44 result = shift;
46 shift = (value > 0xFF) << 3;
47 value >>= shift;
48 result |= shift;
50 shift = (value > 0xF) << 2;
51 value >>= shift;
52 result |= shift;
54 shift = (value > 0x3) << 1;
55 value >>= shift;
56 result |= shift;