Lines Matching refs:shiftCount
1684 uint32_t shiftCount;
1701 for (i = 0, shiftCount = valueSizeInBits - 8; i < valueSizeInBits / 2;
1702 i += 8, shiftCount -= 16) {
1708 DCHECK_LT(0, shiftCount);
1709 DCHECK_EQ(0, (shiftCount + 8) % 16);
1712 shiftLower = gasm_->Word64Shl(value, Int64Constant(shiftCount));
1713 shiftHigher = gasm_->Word64Shr(value, Int64Constant(shiftCount));
1722 shiftLower = gasm_->Word32Shl(value, Int32Constant(shiftCount));
1723 shiftHigher = gasm_->Word32Shr(value, Int32Constant(shiftCount));
1788 uint32_t shiftCount;
1809 for (i = 0, shiftCount = valueSizeInBits - 8; i < valueSizeInBits / 2;
1810 i += 8, shiftCount -= 16) {
1816 DCHECK_LT(0, shiftCount);
1817 DCHECK_EQ(0, (shiftCount + 8) % 16);
1820 shiftLower = gasm_->Word64Shl(value, Int64Constant(shiftCount));
1821 shiftHigher = gasm_->Word64Shr(value, Int64Constant(shiftCount));
1830 shiftLower = gasm_->Word32Shl(value, Int32Constant(shiftCount));
1831 shiftHigher = gasm_->Word32Shr(value, Int32Constant(shiftCount));