Home
last modified time | relevance | path

Searched refs:lowQuotient (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.cpp1206 uint32_t lowQuotient = tempLowDividend / highDivisor; in DivideAndRemainder() local
1207 tempRemainder = tempLowDividend - lowQuotient * highDivisor; in DivideAndRemainder()
1210 while (lowQuotient >= HALFUINT32VALUE || in DivideAndRemainder()
1211 lowQuotient * lowDivisor > tempRemainder * HALFUINT32VALUE + lowDividend2) { in DivideAndRemainder()
1212 lowQuotient--; in DivideAndRemainder()
1221 …remainder = (tempLowDividend * HALFUINT32VALUE + lowDividend2 - lowQuotient * divisor) >> leadingZ… in DivideAndRemainder()
1222 return highQuotient * HALFUINT32VALUE + lowQuotient; in DivideAndRemainder()