Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
H A Djs_bigint.h68 static uint32_t DivideAndRemainder(uint32_t highBit, uint32_t lowBit, uint32_t divisor, uint32_t& remainder);
H A Djs_bigint.cpp1224 uint32_t BigInt::DivideAndRemainder(uint32_t highBit, uint32_t lowBit, uint32_t divisor, uint32_t& remainder) in DivideAndRemainder() argument
1230 uint32_t highDividend = highBit; in DivideAndRemainder()
1232 // highBit is the remainder of the last calculation, which must be less than or equal to the divisor, in DivideAndRemainder()
1234 highDividend = (highBit << leadingZeros) | (lowBit >> (DATEBITS - leadingZeros)); in DivideAndRemainder()

Completed in 4 milliseconds