Home
last modified time | relevance | path

Searched refs:AtomicLoad (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/base/tests/
Datomic_helper_test.cpp132 JSHandle<JSTaggedValue> result0(thread, AtomicHelper::AtomicLoad(thread, arrayVal, index0)); in HWTEST_F_L0()
133 JSHandle<JSTaggedValue> result1(thread, AtomicHelper::AtomicLoad(thread, arrayVal, index1)); in HWTEST_F_L0()
134 JSHandle<JSTaggedValue> result2(thread, AtomicHelper::AtomicLoad(thread, arrayVal, index2)); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/base/
Datomic_helper.h99 static JSTaggedValue AtomicLoad(JSThread *thread, const JSHandle<JSTaggedValue> &typedArray,
Datomic_helper.cpp124 JSTaggedValue AtomicHelper::AtomicLoad(JSThread *thread, const JSHandle<JSTaggedValue> &typedArray, in AtomicLoad() function in panda::ecmascript::base::AtomicHelper
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_atomics.cpp129 return AtomicHelper::AtomicLoad(thread, typedArray, index); in Load()