Home | History | Annotate | Download | only in ia32

Lines Matching full:divisor

3105 void MacroAssembler::TruncatingDiv(Register dividend, int32_t divisor) {
3109 base::SignedDivisionByConstant(static_cast<uint32_t>(divisor));
3113 if (divisor > 0 && neg) add(edx, dividend);
3114 if (divisor < 0 && !neg && mag.multiplier > 0) sub(edx, dividend);