Home
last modified time | relevance | path

Searched refs:newVal (Results 1 - 11 of 11) sorted by relevance

/arkcompiler/runtime_core/static_core/libpandabase/tests/
H A Dfutex_test.cpp35 int newVal = g_global + 1U; in Writer() local
37 g_global = newVal; in Writer()
54 int newVal = g_global + 1U; in Waiter() local
56 ASSERT_EQ(newVal, g_global + 1U); in Waiter()
57 g_global = newVal; in Waiter()
72 int newVal = g_global + 1U; in Syncwaiter() local
74 ASSERT_EQ(newVal, g_global + 1U); in Syncwaiter()
75 g_global = newVal; in Syncwaiter()
143 int newVal = g_global + 1U; in TEST() local
146 g_global = newVal; in TEST()
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
H A Dbuiltins_proxy_stub_builder.h66 GateRef newVal = Int32Or(Int32And(bitfield, Int32Not(mask)), in SetIsRevoked() local
68 Store(VariableType::INT32(), glue, proxy, offset, newVal); in SetIsRevoked() local
/arkcompiler/ets_runtime/ecmascript/
H A Djs_hclass.h544 uint32_t newVal = ObjectTypeBits::Update(bits, type); in SetObjectType() local
545 SetBitField(newVal); in SetObjectType()
1787 uint32_t newVal = ElementsKindBits::Update(bits, kind); in SetElementsKind() local
1788 SetBitField(newVal); in SetElementsKind()
1800 uint32_t newVal = LevelBit::Update(bits, level); in SetLevel() local
1801 SetBitField(newVal); in SetLevel()
1812 uint32_t newVal = DictionaryElementBits::Update(GetBitField(), value); in SetIsDictionaryElement() local
1813 SetBitField(newVal); in SetIsDictionaryElement()
1821 uint32_t newVal = IsStableElementsBit::Update(GetBitField(), value); in SetIsStableElements() local
1822 SetBitField(newVal); in SetIsStableElements()
1842 JSTaggedType newVal = HasConstructorBits::Update(GetBitField(), value); SetHasConstructor() local
1853 uint32_t newVal = NumberOfPropsBits::Update(bits, num); SetNumberOfProps() local
1920 uint32_t newVal = ObjectSizeInWordsBits::Update(bits, num / JSTaggedValue::TaggedTypeSize()); SetObjectSize() local
[all...]
/arkcompiler/runtime_core/static_core/runtime/mem/gc/
H A Dcard_table-inl.h33 inline void CardTable::Card::SetCard(uint8_t newVal) in SetCard() argument
37 value_.store(newVal, std::memory_order_relaxed); in SetCard()
H A Dcard_table.h191 void SetCard(uint8_t newVal);
/arkcompiler/runtime_core/static_core/static_linker/
H A Dlinker_context.cpp209 auto newVal = ValueFromOld(oi->GetValue()); in MergeField() local
210 if (std::holds_alternative<ErrorDetail>(newVal)) { in MergeField()
212 {std::get<ErrorDetail>(newVal), ErrorDetail {"field", oi}, {"value", oi->GetValue()}}); in MergeField()
214 ni->SetValue(std::get<panda_file::ValueItem *>(newVal)); in MergeField()
736 auto newVal = ValueFromOld(oe.GetValue()); in AnnotFromOld() local
737 if (std::holds_alternative<ErrorDetail>(newVal)) { in AnnotFromOld()
738 return std::move(std::get<ErrorDetail>(newVal)); in AnnotFromOld()
741 newElems.emplace_back(name, std::get<panda_file::ValueItem *>(newVal)); in AnnotFromOld()
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_atomics.cpp530 int64_t newVal = 0; in HandleWithBigInt64() local
531 BigInt::BigIntToInt64(thread, newValue, &newVal, &lossless); in HandleWithBigInt64()
535 arg[1] = newVal; in HandleWithBigInt64()
557 uint64_t newVal = 0; in HandleWithBigUint64() local
558 BigInt::BigIntToUint64(thread, newValue, &newVal, &lossless); in HandleWithBigUint64()
562 arg[1] = newVal; in HandleWithBigUint64()
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dstub_builder-inl.h2037 GateRef newVal = Int64Or(Int64And(attr, Int64Not(mask)), in SetDictionaryOrderFieldInPropAttr() local
2039 return newVal; in SetDictionaryOrderFieldInPropAttr()
2105 GateRef newVal = Int32Or(Int32And(bitfield1, Int32Not(mask)), in SetIsAllTaggedProp() local
2107 Store(VariableType::INT32(), glue, hclass, IntPtr(JSHClass::BIT_FIELD1_OFFSET), newVal); in SetIsAllTaggedProp() local
2155 GateRef newVal = Int32Or(Int32And(bitfield, Int32Not(mask)), in SetIsProtoTypeToHClass() local
2157 SetBitFieldToHClass(glue, hClass, newVal); in SetIsProtoTypeToHClass()
2167 GateRef newVal = Int32Or(Int32And(bitfield, Int32Not(mask)), in SetIsTS() local
2169 SetBitFieldToHClass(glue, hClass, newVal); in SetIsTS()
2789 GateRef newVal = Int64Or(Int64And(attr, Int64Not(mask)), in SetOffsetFieldInPropAttr() local
2791 return newVal; in SetOffsetFieldInPropAttr()
2800 GateRef newVal = Int64Or(Int64And(attr, Int64Not(mask)), SetIsInlinePropsFieldInPropAttr() local
2811 GateRef newVal = Int64Or(Int64And(attr, Int64Not(mask)), SetTrackTypeInPropAttr() local
2866 GateRef newVal = Int64Or(Int64And(attr, Int64Not(mask)), SetTaggedRepInPropAttr() local
2878 GateRef newVal = Int32Or(Int32And(bitfield, Int32Not(mask)), SetHClassBit() local
2880 Store(VariableType::INT32(), glue, hClass, IntPtr(JSHClass::BIT_FIELD_OFFSET), newVal); SetHClassBit() local
3256 GateRef newVal = Int32Or(Int32And(oldVal, Int32Not(mask)), value); SetCompiledCodeFlagToFunction() local
3257 Store(VariableType::INT32(), glue, function, bitFieldOffset, newVal); SetCompiledCodeFlagToFunction() local
3282 GateRef newVal = Int32Or(Int32And(oldVal, Int32Not(mask)), SetTaskConcurrentFuncFlagToFunction() local
3284 Store(VariableType::INT32(), glue, function, bitFieldOffset, newVal); SetTaskConcurrentFuncFlagToFunction() local
[all...]
/arkcompiler/toolchain/tooling/agent/
H A Ddebugger_impl.h247 Local<JSValueRef> newVal, const std::string& scope);
H A Ddebugger_impl.cpp1990 std::string_view varName, Local<JSValueRef> newVal, const std::string& scope) in UpdateScopeObject()
2004 PropertyAttribute descriptor(newVal, true, true, true); in UpdateScopeObject()
1989 UpdateScopeObject(const FrameHandler *frameHandler, std::string_view varName, Local<JSValueRef> newVal, const std::string& scope) UpdateScopeObject() argument
/arkcompiler/ets_runtime/ecmascript/debugger/
H A Ddebugger_api.cpp410 JSTaggedValue newVal = JSNApiHelper::ToJSTaggedValue(*value); in SetGlobalValue() local
413 result = SlowRuntimeStub::TryUpdateGlobalRecord(thread, key, newVal); in SetGlobalValue()
419 result = SlowRuntimeStub::StGlobalVar(thread, key, newVal); in SetGlobalValue()

Completed in 24 milliseconds