Searched refs:leftValue (Results 1 – 5 of 5) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ic/ |
D | ic_binary_op.h | 51 JSHandle<JSTaggedValue> leftValue(thread, left); in AddWithTSType() 53 … JSHandle<JSTaggedValue> primitiveA0(thread, JSTaggedValue::ToPrimitive(thread, leftValue)); in AddWithTSType() 76 JSHandle<JSTaggedValue> leftValue(thread, left); in AddWithTSType() 79 JSHandle<EcmaString> stringA0 = JSHandle<EcmaString>(leftValue); in AddWithTSType() 86 JSHandle<EcmaString> stringA0 = JSTaggedValue::ToString(thread, leftValue); in AddWithTSType() 121 JSHandle<JSTaggedValue> leftValue(thread, left); in SubWithTSType() 123 JSTaggedNumber number0 = JSTaggedValue::ToNumber(thread, leftValue); in SubWithTSType() 151 JSHandle<JSTaggedValue> leftValue(thread, left); in MulWithTSType() 154 JSTaggedNumber primitiveA = JSTaggedValue::ToNumber(thread, leftValue); in MulWithTSType() 230 JSHandle<JSTaggedValue> leftValue(thread, left); in ModWithTSType() [all …]
|
/arkcompiler/ets_frontend/es2panda/lexer/regexp/ |
D | regexp.cpp | 761 uint32_t leftValue = 0; in ParseBracedQuantifier() local 765 uint32_t newValue = leftValue * MULTIPLIER + DigitValue(Next()); in ParseBracedQuantifier() 766 if (newValue < leftValue) { in ParseBracedQuantifier() 767 leftValue = std::numeric_limits<uint32_t>::max(); in ParseBracedQuantifier() 771 leftValue = newValue; in ParseBracedQuantifier() 796 if (rightValue < leftValue) { in ParseBracedQuantifier()
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
D | slow_runtime_stub.cpp | 152 JSHandle<JSTaggedValue> leftValue(thread, left); in Add2() local 154 return RuntimeStubs::RuntimeAdd2(thread, leftValue, rightValue); in Add2() 202 JSHandle<JSTaggedValue> leftValue(thread, left); in Eq() local 204 return RuntimeStubs::RuntimeEq(thread, leftValue, rightValue); in Eq() 212 JSHandle<JSTaggedValue> leftValue(thread, left); in NotEq() local 214 return RuntimeStubs::RuntimeNotEq(thread, leftValue, rightValue); in NotEq() 222 JSHandle<JSTaggedValue> leftValue(thread, left); in Less() local 224 return RuntimeStubs::RuntimeLess(thread, leftValue, rightValue); in Less() 232 JSHandle<JSTaggedValue> leftValue(thread, left); in LessEq() local 234 return RuntimeStubs::RuntimeLessEq(thread, leftValue, rightValue); in LessEq() [all …]
|
/arkcompiler/ets_runtime/ecmascript/ |
D | tagged_node.cpp | 277 JSTaggedValue leftValue = treeNode->GetLeft(); in Balance() local 278 if (!leftValue.IsHole()) { in Balance() 279 RBTreeNode *leftChild = RBTreeNode::Cast(leftValue.GetTaggedObject()); in Balance() 350 JSTaggedValue leftValue = Delete(thread, leftChildVa, hash, key, oldValue); in Delete() local 351 treeNode->SetLeft(thread, leftValue); in Delete()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
D | runtime_stubs-inl.h | 1516 JSHandle<JSTaggedValue> leftValue = JSTaggedValue::ToNumeric(thread, left); in RuntimeShl2() local 1520 if (leftValue->IsBigInt() || rightValue->IsBigInt()) { in RuntimeShl2() 1521 if (leftValue->IsBigInt() && rightValue->IsBigInt()) { in RuntimeShl2() 1522 JSHandle<BigInt> leftBigint(leftValue); in RuntimeShl2() 1528 JSTaggedValue taggedNumber0 = RuntimeToJSTaggedValueWithInt32(thread, leftValue); in RuntimeShl2()
|