Lines Matching defs:shift
52 Dwarf_Sword shift;
57 word_number is assumed big enough that the shift has a defined
91 the shift for the shift to have a defined result. */
93 shift = 0;
97 number |= ((Dwarf_Unsigned) (byte & 0x7f)) << shift;
104 shift += 7;
122 Dwarf_Sword shift = 0;
131 number |= ((Dwarf_Signed) ((byte & 0x7f))) << shift;
132 shift += 7;
142 if ((shift < sizeof(Dwarf_Signed) * BITSINBYTE) && sign) {
143 number |= -((Dwarf_Signed) 1 << shift);