| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/ |
| D | escompat_Atomics.cpp | 58 auto add = [value](int8_t oldValue) { return oldValue + value; }; in SharedMemoryAddI8() 65 auto bitwiseAnd = [value](int8_t oldValue) { in SharedMemoryAndI8() 75 auto compareExchange = [expectedValue, replacementValue](int8_t oldValue) { in SharedMemoryCompareExchangeI8() 84 auto exchange = [value]([[maybe_unused]] int8_t oldValue) { return value; }; in SharedMemoryExchangeI8() 98 auto orBitwise = [value](int8_t oldValue) { in SharedMemoryOrI8() 107 auto store = [value]([[maybe_unused]] int8_t oldValue) { return value; }; in SharedMemoryStoreI8() 114 auto add = [value](int8_t oldValue) { return oldValue - value; }; in SharedMemorySubI8() 121 auto xorBitwise = [value](int8_t oldValue) { in SharedMemoryXorI8()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/ |
| D | ets_shared_memory-inl.h | 37 auto oldValue = thisHandle->GetElement(index); in ReadModifyWriteI8() local
|
| D | ets_object.h | 150 …bool CompareAndSetFieldPrimitive(size_t offset, T oldValue, T newValue, std::memory_order memoryOr… in CompareAndSetFieldPrimitive() 155 bool CompareAndSetFieldObject(size_t offset, EtsObject *oldValue, EtsObject *newValue, in CompareAndSetFieldObject()
|
| /arkcompiler/runtime_core/static_core/runtime/include/ |
| D | object_header-inl.h | 133 inline bool ObjectHeader::CompareAndSetFieldPrimitive(size_t offset, T oldValue, T newValue, in CompareAndSetFieldPrimitive() 140 inline bool ObjectHeader::CompareAndSetFieldObject(size_t offset, ObjectHeader *oldValue, ObjectHea… in CompareAndSetFieldObject() 149 inline T ObjectHeader::CompareAndExchangeFieldPrimitive(size_t offset, T oldValue, T newValue, in CompareAndExchangeFieldPrimitive() 156 …ne ObjectHeader *ObjectHeader::CompareAndExchangeFieldObject(size_t offset, ObjectHeader *oldValue, in CompareAndExchangeFieldObject()
|
| D | object_accessor-inl.h | 243 …l, T> ObjectAccessor::CompareAndSetFieldPrimitive(void *obj, size_t offset, T oldValue, T newValue, in CompareAndSetFieldPrimitive() 258 … ObjectHeader *oldValue, in CompareAndSetFieldObject() 349 T oldValue = atomicAddr->load(memoryOrder); in GetAndAddFieldPrimitive() local
|
| D | class-inl.h | 754 inline bool Class::CompareAndSetFieldPrimitive(size_t offset, T oldValue, T newValue, std::memory_o… in CompareAndSetFieldPrimitive() 762 inline bool Class::CompareAndSetFieldObject(size_t offset, ObjectHeader *oldValue, ObjectHeader *ne… in CompareAndSetFieldObject() 774 inline T Class::CompareAndExchangeFieldPrimitive(size_t offset, T oldValue, T newValue, std::memory… in CompareAndExchangeFieldPrimitive() 782 inline ObjectHeader *Class::CompareAndExchangeFieldObject(size_t offset, ObjectHeader *oldValue, Ob… in CompareAndExchangeFieldObject()
|
| D | method.h | 422 uint32_t oldValue = accessFlags_.load(std::memory_order_acquire); in AtomicSetCompilationStatus() local 836 uint32_t oldValue = accessFlags_.load(std::memory_order_acquire); in SetVerificationStage() local
|
| /arkcompiler/runtime_core/static_core/runtime/include/coretypes/ |
| D | array-inl.h | 83 inline bool Array::CompareAndSetPrimitive(size_t offset, T oldValue, T newValue, std::memory_order … in CompareAndSetPrimitive() 93 inline bool Array::CompareAndSetObject(size_t offset, ObjectHeader *oldValue, ObjectHeader *newValu… in CompareAndSetObject() 103 inline T Array::CompareAndExchangePrimitive(size_t offset, T oldValue, T newValue, std::memory_orde… in CompareAndExchangePrimitive() 113 inline ObjectHeader *Array::CompareAndExchangeObject(size_t offset, ObjectHeader *oldValue, ObjectH… in CompareAndExchangeObject()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/base/ |
| D | bit_set.h | 105 auto oldValue = data_.inlineWord_; in UnionWithChanged() local 111 auto oldValue = data_.words_[i]; in UnionWithChanged() local
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | barriers.h | 39 static inline T AtomicSetPrimitive(volatile void *obj, size_t offset, T oldValue, T value) in AtomicSetPrimitive()
|
| D | gc_bitset.h | 205 auto oldValue = word->load(std::memory_order_relaxed); variable 236 auto oldValue = word->load(std::memory_order_relaxed); variable
|
| D | parallel_marker-inl.h | 304 auto oldValue = markWord.GetValue(); in EvacuateObject() local 393 auto oldValue = markWord.GetValue(); in EvacuateObject() local
|
| /arkcompiler/runtime_core/static_core/libpandabase/utils/ |
| D | bit_field.h | 127 static constexpr uint64_t Update(uint64_t oldValue, T value) in Update()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
| D | func_desc.h | 188 auto oldValue = static_cast<size_t>(funcInfo); in SetFuncInfoNoBetterThan() local 210 size_t oldValue = static_cast<size_t>(paramInfo[idx]); in SetParamInfoNoBetterThan() local
|
| /arkcompiler/runtime_core/static_core/libpandabase/mem/ |
| D | base_mem_stats.cpp | 43 uint64_t oldValue = allocated_[index].fetch_sub(size, std::memory_order_acq_rel); in RecordMoved() local
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | tagged_hash_array.cpp | 115 JSMutableHandle<JSTaggedValue> oldValue(thread, JSTaggedValue::Undefined()); in Resize() local 247 JSTaggedValue oldValue = JSTaggedValue::Hole(); in RemoveNode() local
|
| D | global_dictionary-inl.h | 220 int entry, const JSHandle<JSTaggedValue> &oldValue) in InvalidateAndReplaceEntry()
|
| D | tagged_array-inl.h | 212 JSTaggedValue oldValue = srcArray->Get(effectiveLength - 1); in InsertElementByIndex() local
|
| D | tagged_node.cpp | 339 const JSTaggedValue &key, JSTaggedValue &oldValue) in Delete()
|
| D | object_fast_operator-inl.h | 394 JSTaggedValue oldValue = ElementAccessor::Get(arrayHandler, index); in SetPropertyByIndex() local
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | string_helper.h | 55 static inline CString ReplaceAll(CString str, const CString &oldValue, in ReplaceAll() 69 static inline CString Replace(CString str, const CString &oldValue, in Replace()
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | method.cpp | 570 ProfilingData *oldValue = nullptr; in StartProfiling() local
|
| /arkcompiler/ets_runtime/ecmascript/containers/ |
| D | containers_linked_list.cpp | 501 JSTaggedValue oldValue = in Set() local
|
| /arkcompiler/ets_runtime/ecmascript/js_api/ |
| D | js_api_arraylist.cpp | 186 JSTaggedValue oldValue = resElements->Get(index); in RemoveByIndex() local
|
| D | js_api_vector.cpp | 194 JSTaggedValue oldValue = resElements->Get(index); in RemoveByIndex() local
|