Lines Matching refs:quotient
117 // Returns the quotient.
118 // quotient = (high << kDigitBits + low - remainder) / divisor
126 digit_t quotient;
129 // Outputs: {quotient} will be in rax, {rem} in rdx.
130 : "=a"(quotient), "=d"(rem)
135 return quotient;
137 digit_t quotient;
140 // Outputs: {quotient} will be in eax, {rem} in edx.
141 : "=a"(quotient), "=d"(rem)
146 return quotient;