Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
H A Djs_bigint.cpp1254 uint32_t lowQuotient = tempLowDividend / highDivisor; in DivideAndRemainder() local
1255 tempRemainder = tempLowDividend - lowQuotient * highDivisor; in DivideAndRemainder()
1258 while (lowQuotient >= HALFUINT32VALUE || in DivideAndRemainder()
1259 lowQuotient * lowDivisor > tempRemainder * HALFUINT32VALUE + lowDividend2) { in DivideAndRemainder()
1260 lowQuotient--; in DivideAndRemainder()
1269 remainder = (tempLowDividend * HALFUINT32VALUE + lowDividend2 - lowQuotient * divisor) >> leadingZeros; in DivideAndRemainder()
1270 return highQuotient * HALFUINT32VALUE + lowQuotient; in DivideAndRemainder()

Completed in 4 milliseconds