Home
last modified time | relevance | path

Searched defs:newValue (Results 1 - 24 of 24) sorted by relevance

/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Datomic.h37 ALWAYS_INLINE inline T AtomicCmpxchgStrong(T *addr, T expected, T newValue, std::memory_order order) in AtomicCmpxchgStrong() argument
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
H A DconstStringToCharLowering.cpp43 auto newValue = checker->Allocator()->New<ir::CharLiteral>(value); in TryConvertToCharLiteral() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
H A Dets_object.h150 bool CompareAndSetFieldPrimitive(size_t offset, T oldValue, T newValue, std::memory_order memoryOrder, bool strong) in CompareAndSetFieldPrimitive() argument
155 bool CompareAndSetFieldObject(size_t offset, EtsObject *oldValue, EtsObject *newValue, in CompareAndSetFieldObject() argument
/arkcompiler/runtime_core/static_core/runtime/include/
H A Dobject_header-inl.h146 inline bool ObjectHeader::CompareAndSetFieldPrimitive(size_t offset, T oldValue, T newValue, in CompareAndSetFieldPrimitive() argument
154 inline bool ObjectHeader::CompareAndSetFieldObject(size_t offset, ObjectHeader *oldValue, ObjectHeader *newValue, in CompareAndSetFieldObject() argument
163 inline T ObjectHeader::CompareAndExchangeFieldPrimitive(size_t offset, T oldValue, T newValue, in CompareAndExchangeFieldPrimitive() argument
171 CompareAndExchangeFieldObject(size_t offset, ObjectHeader *oldValue, ObjectHeader *newValue, std::memory_order memoryOrder, bool strong) CompareAndExchangeFieldObject() argument
H A Dobject_accessor-inl.h249 inline std::pair<bool, T> ObjectAccessor::CompareAndSetFieldPrimitive(void *obj, size_t offset, T oldValue, T newValue, in CompareAndSetFieldPrimitive() argument
358 T newValue; in GetAndAddFieldPrimitive() local
264 CompareAndSetFieldObject(void *obj, size_t offset, ObjectHeader *oldValue, ObjectHeader *newValue, std::memory_order memoryOrder, bool strong) CompareAndSetFieldObject() argument
[all...]
H A Dmethod.h434 uint32_t newValue = MakeCompilationStatusValue(oldValue, newStatus); in AtomicSetCompilationStatus() local
854 uint32_t newValue = MakeVerificationStageValue(oldValue, newStage); in SetVerificationStage() local
/arkcompiler/ets_runtime/ecmascript/jspandafile/
H A Dprogram_object.cpp159 auto newValue = snapshotCachedArray->Get(i); in MergeObjectLiteralHClassCache() local
169 auto newValue = snapshotCachedArray->Get(i); in MergeObjectLiteralHClassCache() local
/arkcompiler/runtime_core/static_core/runtime/include/coretypes/
H A Darray-inl.h83 inline bool Array::CompareAndSetPrimitive(size_t offset, T oldValue, T newValue, std::memory_order memoryOrder, in CompareAndSetPrimitive() argument
93 inline bool Array::CompareAndSetObject(size_t offset, ObjectHeader *oldValue, ObjectHeader *newValue, in CompareAndSetObject() argument
103 inline T Array::CompareAndExchangePrimitive(size_t offset, T oldValue, T newValue, std::memory_order memoryOrder, in CompareAndExchangePrimitive() argument
113 inline ObjectHeader *Array::CompareAndExchangeObject(size_t offset, ObjectHeader *oldValue, ObjectHeader *newValue, in CompareAndExchangeObject() argument
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
H A 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
H A Dmir_symbol.h366 void SetValue(SymbolType newValue) in SetValue() argument
/arkcompiler/ets_runtime/ecmascript/containers/
H A Dcontainers_hashmap.cpp354 JSHandle<JSTaggedValue> newValue = GetCallArg(argv, 1); in Replace() local
/arkcompiler/ets_runtime/ecmascript/js_api/
H A Djs_api_hashmap.cpp92 bool JSAPIHashMap::Replace(JSThread *thread, JSTaggedValue key, JSTaggedValue newValue) in Replace() argument
/arkcompiler/ets_runtime/ecmascript/
H A 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); SetDeoptType() local
324 uint64_t newValue = SetFunctionKind(extraLiteralInfo, kind); SetFunctionKind() local
343 uint64_t newValue = SetIsFastCall(callFiled, isFastCall); SetIsFastCall() local
356 uint64_t newValue = SetCallNapi(extraLiteralInfo, isCallNapi); SetCallNapi() local
369 uint64_t newValue = SetBuiltinId(extraLiteralInfo, id); SetBuiltinId() local
376 uint64_t newValue = SetDeoptThreshold(extraLiteralInfo, count); SetDeoptThreshold() local
389 uint64_t newValue = SetFpDelta(extraLiteralInfo, delta); SetFpDelta() local
423 uint64_t newValue = SetIsSendable(extraLiteralInfo, isSendable); SetIsSendable() local
[all...]
H A Djs_function.h67 uint32_t newValue = IsFastCallBit::Update(bitField, isFastCall); in SetIsCompiledFastCall() local
104 uint32_t newValue = IsCompiledCodeBit::Update(bitField, isCompiled); in SetCompiledCodeBit() local
119 uint32_t newValue = TaskConcurrentFuncFlagBit::Update(bitField, value); in SetTaskConcurrentFuncFlag() local
/arkcompiler/ets_frontend/ets2panda/lexer/regexp/
H A Dregexp.cpp541 uint32_t newValue = decimalValue * MULTIPLIER + DigitValue(Next()); in ParseDecimalEscape() local
582 uint32_t newValue = octalValue * 8 + DigitValue(Peek()); in ParseLegacyOctalEscape() local
788 uint32_t newValue = leftValue * MULTIPLIER + DigitValue(Next()); in ParseBracedQuantifier() local
809 uint32_t newValue in ParseBracedQuantifier() local
[all...]
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_atomics.cpp389 JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOURTH); in HandleWithUint8() local
412 JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOURTH); in HandleWithInt8() local
435 JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOURTH); in HandleWithUint16() local
458 JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOURTH); in HandleWithInt16() local
481 JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOURTH); in HandleWithUint32() local
504 JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOURTH); HandleWithInt32() local
529 JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOURTH); HandleWithBigInt64() local
556 JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOURTH); HandleWithBigUint64() local
[all...]
/arkcompiler/ets_frontend/es2panda/lexer/regexp/
H A Dregexp.cpp537 uint32_t newValue = decimalValue * MULTIPLIER + DigitValue(Next()); in ParseDecimalEscape() local
579 uint32_t newValue = octalValue * 8 + DigitValue(Peek()); in ParseLegacyOctalEscape() local
767 uint32_t newValue = leftValue * MULTIPLIER + DigitValue(Next()); in ParseBracedQuantifier() local
788 uint32_t newValue in ParseBracedQuantifier() local
[all...]
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/
H A Dets_intrinsics_peephole.cpp430 auto newValue = intrinsic->GetInput(0).GetInst(); in TryFuseCastAndSetProperty() local
/arkcompiler/ets_runtime/ecmascript/base/
H A Dstring_helper.h54 ReplaceAll(CString str, const CString &oldValue, const CString &newValue) ReplaceAll() argument
68 Replace(CString str, const CString &oldValue, const CString &newValue) Replace() argument
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
H A Daarch64_emitter.cpp1412 Operand *newValue = &insn.GetOperand(kInsnSeventhOpnd); in EmitCompareAndSwapInt() local
H A Daarch64_cgfunc.cpp188 int64 newValue = static_cast<int64>(value & mask); in SelectCopyImm() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H A Dpeepholes.cpp2422 auto newValue = (cnst1->GetIntValue() & sizeMask) + (cnst2->GetIntValue() & sizeMask); in TryCombineShiftConst() local
/arkcompiler/ets_frontend/es2panda/parser/transformer/
H A Dtransformer.cpp1515 auto newValue = AllocNode<ir::BinaryExpression>(callExpr, AllocNode<ir::Identifier>(varName), in CreateMethodDecorators() local
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dstub_builder-inl.h340 GateRef newValue = env->GetBuilder()->TruncInt64ToInt16(value); in SetHotnessCounter() local
341 Store(VariableType::INT16(), glue, method, IntPtr(Method::LITERAL_INFO_OFFSET), newValue); in SetHotnessCounter() local
2247 GateRef newValue = Int32LSR(value, Int32(JSHClass::NumberOfPropsBits::START_BIT)); in SetNumberOfPropsToHClass() local
2269 GateRef newValue = Int32LSR(elementsKind, Int32(TrackInfo::ElementsKindBits::START_BIT)); in SetElementsKindToTrackInfo() local
2279 GateRef newValue = Int32LSL(spaceFlag, Int32(TrackInfo::SpaceFlagBits::START_BIT)); in SetSpaceFlagToTrackInfo() local

Completed in 50 milliseconds