Home
last modified time | relevance | path

Searched defs:newValue (Results 1 – 25 of 51) sorted by relevance

123

/arkcompiler/ets_runtime/ecmascript/
Dmethod.h120 uint64_t newValue = SetNumArgsWithCallField(callField, numargs); in SetNumArgsWithCallField() local
127 uint64_t newValue = SetNativeBit(callField, isNative); in SetNativeBit() local
134 uint64_t newValue = SetAotCodeBit(callField, isCompiled); in SetAotCodeBit() local
141 uint64_t newValue = SetFastBuiltinBit(callField, isFastBuiltin); in SetFastBuiltinBit() local
237 uint64_t newValue = MethodLiteral::SetHotnessCounter(literalInfo, counter); in SetHotnessCounter() local
306 uint64_t newValue = SetDeoptType(extraLiteralInfo, type); in SetDeoptType() local
324 uint64_t newValue = SetFunctionKind(extraLiteralInfo, kind); in SetFunctionKind() local
343 uint64_t newValue = SetIsFastCall(callFiled, isFastCall); in SetIsFastCall() local
356 uint64_t newValue = SetCallNapi(extraLiteralInfo, isCallNapi); in SetCallNapi() local
369 uint64_t newValue = SetBuiltinId(extraLiteralInfo, id); in SetBuiltinId() local
[all …]
Djs_function.h52 uint32_t newValue = IsCallNapiBit::Update(bitField, isCallNapi); in SetCallNapi() local
73 uint32_t newValue = IsFastCallBit::Update(bitField, isFastCall); in SetIsCompiledFastCall() local
110 uint32_t newValue = IsCompiledCodeBit::Update(bitField, isCompiled); in SetCompiledCodeBit() local
125 uint32_t newValue = TaskConcurrentFuncFlagBit::Update(bitField, value); in SetTaskConcurrentFuncFlag() local
138 uint32_t newValue = JitCompilingFlagBit::Update(bitField, value); in SetJitCompilingFlag() local
151 uint32_t newValue = BaselinejitCompilingFlagBit::Update(bitField, value); in SetBaselinejitCompilingFlag() local
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Datomic.h39 ALWAYS_INLINE inline T AtomicCmpxchgStrong(T *addr, T expected, T newValue, std::memory_order order) in AtomicCmpxchgStrong()
48 ALWAYS_INLINE inline bool AtomicCmpxchgWeak(T *addr, T &expected, T newValue, std::memory_order ord… in AtomicCmpxchgWeak()
/arkcompiler/ets_frontend/arkguard/test/grammar/export_obfuscation/
Dimport_obfuscation_2.ts19 let newValue = value01 + 1; variable
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/quickfix/multi_file/base/
Dindex.js40 set message(newValue) { argument
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/quickfix/multi_file/patch/
Dindex.js41 set message(newValue) { argument
/arkcompiler/runtime_core/static_core/runtime/include/
Dobject_header-inl.h146 inline bool ObjectHeader::CompareAndSetFieldPrimitive(size_t offset, T oldValue, T newValue, in CompareAndSetFieldPrimitive()
154 …jectHeader::CompareAndSetFieldObject(size_t offset, ObjectHeader *oldValue, ObjectHeader *newValue, in CompareAndSetFieldObject()
163 inline T ObjectHeader::CompareAndExchangeFieldPrimitive(size_t offset, T oldValue, T newValue, in CompareAndExchangeFieldPrimitive()
172ObjectHeader *newValue, std::memory_order memoryOrder, in CompareAndExchangeFieldObject()
Dobject_accessor-inl.h300 …l, T> ObjectAccessor::CompareAndSetFieldPrimitive(void *obj, size_t offset, T oldValue, T newValue, in CompareAndSetFieldPrimitive()
318ObjectHeader *newValue, in CompareAndSetFieldObject()
413 T newValue; in GetAndAddFieldPrimitive() local
439 T newValue; in GetAndSubFieldPrimitiveFloat() local
Dclass-inl.h824 inline bool Class::CompareAndSetFieldPrimitive(size_t offset, T oldValue, T newValue, std::memory_o… in CompareAndSetFieldPrimitive()
832 …bool Class::CompareAndSetFieldObject(size_t offset, ObjectHeader *oldValue, ObjectHeader *newValue, in CompareAndSetFieldObject()
844 inline T Class::CompareAndExchangeFieldPrimitive(size_t offset, T oldValue, T newValue, std::memory… in CompareAndExchangeFieldPrimitive()
852 …Class::CompareAndExchangeFieldObject(size_t offset, ObjectHeader *oldValue, ObjectHeader *newValue, in CompareAndExchangeFieldObject()
Dmethod.h436 uint32_t newValue = MakeCompilationStatusValue(oldValue, newStatus); in AtomicSetCompilationStatus() local
872 uint32_t newValue = MakeVerificationStageValue(oldValue, newStage); in SetVerificationStage() local
/arkcompiler/runtime_core/libabckit/tests/ut/isa/isa_static/arrays/
Darrays_static.cpp42 AbckitInst *newValue = nullptr; member
53 auto *newValue = args.newValue; in TransformStoreArrayByIdx() local
89 AbckitInst *newValue = g_implG->gFindOrCreateConstantF64(graph, 4); in TEST_F() local
118 AbckitInst *newValue = g_implG->gFindOrCreateConstantF64(graph, 4); in TEST_F() local
144 AbckitInst *newValue = g_implG->gFindOrCreateConstantI32(graph, 4); in TEST_F() local
173 AbckitInst *newValue = g_implG->gFindOrCreateConstantI32(graph, 4); in TEST_F() local
/arkcompiler/ets_frontend/ets2panda/lexer/regexp/
Dregexp.cpp540 uint32_t newValue = decimalValue * MULTIPLIER + DigitValue(Next()); in ParseDecimalEscape() local
581 uint32_t newValue = octalValue * 8 + DigitValue(Peek()); in ParseLegacyOctalEscape() local
792 uint32_t newValue = leftValue * MULTIPLIER + DigitValue(Next()); in ParseBracedQuantifier() local
813 uint32_t newValue = rightValue * MULTIPLIER + DigitValue(Next()); in ParseBracedQuantifier() local
/arkcompiler/ets_frontend/es2panda/lexer/regexp/
Dregexp.cpp535 uint32_t newValue = decimalValue * MULTIPLIER + DigitValue(Next()); in ParseDecimalEscape() local
577 uint32_t newValue = octalValue * 8 + DigitValue(Peek()); in ParseLegacyOctalEscape() local
765 uint32_t newValue = leftValue * MULTIPLIER + DigitValue(Next()); in ParseBracedQuantifier() local
786 uint32_t newValue = rightValue * MULTIPLIER + DigitValue(Next()); in ParseBracedQuantifier() local
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_atomics.cpp390 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithUint8() local
413 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithInt8() local
436 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithUint16() local
459 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithInt16() local
482 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithUint32() local
505 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithInt32() local
530 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithBigInt64() local
557 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithBigUint64() local
/arkcompiler/runtime_core/static_core/runtime/include/coretypes/
Darray-inl.h83 inline bool Array::CompareAndSetPrimitive(size_t offset, T oldValue, T newValue, std::memory_order … in CompareAndSetPrimitive()
93 …line bool Array::CompareAndSetObject(size_t offset, ObjectHeader *oldValue, ObjectHeader *newValue, in CompareAndSetObject()
103 inline T Array::CompareAndExchangePrimitive(size_t offset, T oldValue, T newValue, std::memory_orde… in CompareAndExchangePrimitive()
113 …der *Array::CompareAndExchangeObject(size_t offset, ObjectHeader *oldValue, ObjectHeader *newValue, in CompareAndExchangeObject()
191 …ArraySizeT idx, T oldValue, T newValue, std::memory_order memoryOrder, bool strong, uint32_t byteO… in CompareAndExchange()
/arkcompiler/ets_runtime/tools/ap_file_viewer/src/base-ui/menu/
DMainMenuGroup.js161 attributeChangedCallback(name, oldValue, newValue) { argument
DMainMenuItem.js196 attributeChangedCallback(name, oldValue, newValue) { argument
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dfunc_desc.h189 auto newValue = static_cast<size_t>(fi); in SetFuncInfoNoBetterThan() local
211 size_t newValue = static_cast<size_t>(pi); in SetParamInfoNoBetterThan() local
/arkcompiler/runtime_core/libabckit/tests/ut/isa/isa_dynamic/loadstore/
Dloadstore.cpp219 auto *newValue = g_dynG->iCreateLoadString(graph, newValueString); in TEST_F() local
251 auto *newValue = g_dynG->iCreateLoadString(graph, newValueString); in TEST_F() local
466 auto *newValue = g_dynG->iCreateLoadString(graph, newValueString); in TEST_F() local
503 auto *newValue = g_dynG->iCreateLoadString(graph, newValueString); in TEST_F() local
540 auto *newValue = g_dynG->iCreateLoadString(graph, newValueString); in TEST_F() local
572 auto *newValue = g_dynG->iCreateLoadString(graph, newValueString); in TEST_F() local
619 auto *newValue = g_dynG->iCreateLoadString(graph, newValueString); in TEST_F() local
/arkcompiler/runtime_core/static_core/libpandabase/mem/ringbuf/
Dlock_free_ring_buffer.h102 size_t newValue = Increment(currentHead); in TryPop() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
Dets_object.h173 …bool CompareAndSetFieldPrimitive(size_t offset, T oldValue, T newValue, std::memory_order memoryOr… in CompareAndSetFieldPrimitive()
178 bool CompareAndSetFieldObject(size_t offset, EtsObject *oldValue, EtsObject *newValue, in CompareAndSetFieldObject()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dprogram_object.cpp158 auto newValue = snapshotCachedArray->Get(thread, i); in MergeObjectLiteralHClassCache() local
168 auto newValue = snapshotCachedArray->Get(thread, i); in MergeObjectLiteralHClassCache() local
/arkcompiler/ets_runtime/ecmascript/base/
Dstring_helper.h87 const CString &newValue) in ReplaceAll()
101 static inline CString Replace(CString str, const T &oldValue, const T &newValue) in Replace()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
Daarch64_obj_emitter.cpp72 uint32 newValue = GetTextDataElem32(useOffset) | ((pcRelImm & mask) << kShiftFive); in HandleLocalBranchFixup() local
84 uint32 newValue = GetTextDataElem32(useOffset) | (pcRelImm & mask); in HandleLocalBranchFixup() local
93 uint32 newValue = GetTextDataElem32(useOffset) | ((pcRelImm & mask) << kShiftFive); in HandleLocalBranchFixup() local
99 uint32 newValue = GetTextDataElem32(useOffset) | ((pcRelImm & mask) << kShiftFive); in HandleLocalBranchFixup() local
139 … uint32 newValue = objFuncEmitInfo.GetTextDataElem32(fixup.GetOffset()) | (pcRelImm & 0x3FFFFFF); in HandleCallFixup() local
155 uint32 newValue = objFuncEmitInfo.GetTextDataElem32(fixup.GetOffset()) | immLow | immHigh; in HandleAdrFixup() local
/arkcompiler/runtime_core/static_core/runtime/tests/tooling/
Dtest_runner.h88 PtProperty property, VRegValue newValue) override in PropertyModification()

123