Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.cpp1205 … uint32_t tempLowDividend = highDividend * HALFUINT32VALUE + lowDividend1 - highQuotient * divisor; in DivideAndRemainder() local
1206 uint32_t lowQuotient = tempLowDividend / highDivisor; in DivideAndRemainder()
1207 tempRemainder = tempLowDividend - lowQuotient * highDivisor; in DivideAndRemainder()
1221 …remainder = (tempLowDividend * HALFUINT32VALUE + lowDividend2 - lowQuotient * divisor) >> leadingZ… in DivideAndRemainder()