Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.cpp202 BigInt* yVal = BigInt::Cast(y.GetTaggedObject()); in Equal() local
203 return Equal(xVal, yVal); in Equal()
273 JSHandle<BigInt> yVal = BigInt::BitwiseSubOne(thread, y, y->GetLength()); in OneIsNegativeAND() local
275 uint32_t yLength = yVal->GetLength(); in OneIsNegativeAND()
284 uint32_t res = x->GetDigit(i) & ~(yVal->GetDigit(i)); in OneIsNegativeAND()
301 JSHandle<BigInt> yVal = BitwiseSubOne(thread, y, y->GetLength()); in BitwiseAND() local
302 JSHandle<BigInt> temp = BitwiseOp(thread, Operate::OR, xVal, yVal); in BitwiseAND()
319 JSHandle<BigInt> yVal = BigInt::BitwiseSubOne(thread, y, y->GetLength()); in OneIsNegativeXOR() local
320 JSHandle<BigInt> temp = BigInt::BitwiseOp(thread, Operate::XOR, x, yVal); in OneIsNegativeXOR()
331 JSHandle<BigInt> yVal = BitwiseSubOne(thread, y, y->GetLength()); in BitwiseXOR() local
[all …]