Searched refs:bigintCarry (Results 1 - 2 of 2) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_bigint.cpp | 376 uint32_t bigintCarry = 0; in BitwiseSubOne() local 377 newBigint->SetDigit(i, BigIntHelper::SubHelper(bigint->GetDigit(i), carry, bigintCarry)); in BitwiseSubOne() 378 carry = bigintCarry; in BitwiseSubOne() 403 uint32_t bigintCarry = 0; in BitwiseAddOne() local 404 newBigint->SetDigit(i, BigIntHelper::AddHelper(bigint->GetDigit(i), carry, bigintCarry)); in BitwiseAddOne() 405 carry = bigintCarry; in BitwiseAddOne() 757 uint32_t bigintCarry = 0; in BigintAdd() local 762 addPlus = BigIntHelper::AddHelper(addPlus, bigintCarry, newBigintCarry); in BigintAdd() 764 bigintCarry = newBigintCarry; in BigintAdd() 769 uint32_t addPlus = BigIntHelper::AddHelper(x->GetDigit(i), bigintCarry, newBigintCarr in BigintAdd() 779 AddHelper(uint32_t x, uint32_t y, uint32_t &bigintCarry) AddHelper() argument 792 uint32_t bigintCarry = 0; BigintSub() local 827 SubHelper(uint32_t x, uint32_t y, uint32_t &bigintCarry) SubHelper() argument [all...] |
H A D | js_bigint.h | 208 static uint32_t AddHelper(uint32_t x, uint32_t y, uint32_t &bigintCarry); 209 static uint32_t SubHelper(uint32_t x, uint32_t y, uint32_t &bigintCarry);
|
Completed in 4 milliseconds