Lines Matching refs:shift
637 unsigned int shift; in read_uleb128() local
642 shift = 0; in read_uleb128()
652 if (shift < 64) in read_uleb128()
653 ret |= ((uint64_t) (b & 0x7f)) << shift; in read_uleb128()
659 shift += 7; in read_uleb128()
672 unsigned int shift; in read_sleb128() local
677 shift = 0; in read_sleb128()
687 if (shift < 64) in read_sleb128()
688 val |= ((uint64_t) (b & 0x7f)) << shift; in read_sleb128()
694 shift += 7; in read_sleb128()
698 if ((b & 0x40) != 0 && shift < 64) in read_sleb128()
699 val |= ((uint64_t) -1) << shift; in read_sleb128()