Home | History | Annotate | Download | only in dwarf2

Lines Matching refs:shift

35   int shift;
39 shift = 0;
46 result |= ((ULONGEST) (byte & 127) << shift);
51 shift += 7;
62 int shift, num_read;
66 shift = 0;
73 result |= ((ULONGEST) (byte & 127) << shift);
74 shift += 7;
80 if ((shift < 8 * sizeof (result)) && (byte & 0x40))
81 result |= -(((ULONGEST) 1) << shift);