Home
last modified time | relevance | path

Searched defs:addr (Results 1 - 25 of 137) sorted by relevance

123456

/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
H A Dets_weak_reference.cpp26 void EtsWeakReference::SetReferent(EtsObject *addr) in SetReferent() argument
/arkcompiler/runtime_core/static_core/runtime/
H A Dhandle_scope.cpp24 uintptr_t addr = thread_->GetHandleStorage<coretypes::TaggedType>()->NewHandle(value); in NewHandle() local
33 uintptr_t addr = thread_->GetHandleStorage<ObjectHeader *>()->NewHandle(value); in NewHandle() local
H A Dhandle_base.h83 explicit HandleBase(uintptr_t addr) : address_(addr) {} in HandleBase() argument
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Datomic.h23 ALWAYS_INLINE inline void AtomicStore(T *addr, T val, std::memory_order order) in AtomicStore() argument
30 ALWAYS_INLINE inline T AtomicLoad(T *addr, std::memory_order order) in AtomicLoad() argument
37 ALWAYS_INLINE inline T AtomicCmpxchgStrong(T *addr, T expected, T newValue, std::memory_order order) in AtomicCmpxchgStrong() argument
/arkcompiler/ets_runtime/ecmascript/
H A Dglobal_handle_collection.h36 uintptr_t addr = thread_->NewGlobalHandle(value); in NewHandle() local
H A Djs_handle.h235 auto addr = reinterpret_cast<JSTaggedValue *>(this->GetAddress()); in Update() local
243 auto addr = reinterpret_cast<JSTaggedValue *>(this->GetAddress()); in Update() local
/arkcompiler/toolchain/inspector/
H A Dlibrary_loader.cpp51 void* addr = reinterpret_cast<void*>(GetProcAddress(module, symbol.data())); in ResolveSymbol() local
/arkcompiler/ets_runtime/ecmascript/mem/
H A Dbarriers.h34 auto *addr = reinterpret_cast<T *>(ToUintPtr(obj) + offset); in SetPrimitive() local
63 auto *addr = reinterpret_cast<T *>(ToUintPtr(obj) + offset); in GetValue() local
/arkcompiler/runtime_core/libpandabase/tests/
H A Dmmap_fixed_test.cpp26 void DeathWrite64(uintptr_t addr) in DeathWrite64() argument
/arkcompiler/runtime_core/static_core/verification/cflow/
H A Dcflow_info.h64 bool IsFlagSet(uint8_t const *addr, Flag flag) const in IsFlagSet() argument
[all...]
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/
H A Dheap_sampling_test.cpp98 Address addr = 0; in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/platform/windows/
H A Dos.cpp51 long PtracePeektext([[maybe_unused]] int pid, [[maybe_unused]] uintptr_t addr) in PtracePeektext() argument
66 void *PageMapExecFortSpace(void *addr, [[maybe_unused]] size_t size, [[maybe_unused]] int prot) in PageMapExecFortSpace() argument
/arkcompiler/ets_runtime/ecmascript/tests/
H A Dconcurrent_marking_test.cpp145 uintptr_t addr = space->Allocate(size); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/platform/unix/linux/
H A Dos.cpp61 long PtracePeektext(int pid, uintptr_t addr) in PtracePeektext() argument
95 void *PageMapExecFortSpace(void *addr, size_t size, int prot) in PageMapExecFortSpace() argument
/arkcompiler/ets_runtime/ecmascript/platform/unix/mac/
H A Dos.cpp57 long PtracePeektext([[maybe_unused]] int pid, [[maybe_unused]] uintptr_t addr) in PtracePeektext() argument
72 void *PageMapExecFortSpace(void *addr, [[maybe_unused]] size_t size, [[maybe_unused]] int prot) in PageMapExecFortSpace() argument
/arkcompiler/runtime_core/libpandabase/mem/
H A Dmalloc_mem_pool-inl.h94 inline AllocatorInfo MallocMemPool::GetAllocatorInfoForAddrImpl([[maybe_unused]] const void *addr) in GetAllocatorInfoForAddrImpl() argument
102 inline SpaceType MallocMemPool::GetSpaceTypeForAddrImpl([[maybe_unused]] const void *addr) in GetSpaceTypeForAddrImpl() argument
110 inline void *MallocMemPool::GetStartAddrPoolForAddrImpl([[maybe_unused]] const void *addr) in GetStartAddrPoolForAddrImpl() argument
/arkcompiler/runtime_core/static_core/libpandabase/mem/
H A Dmalloc_mem_pool-inl.h103 inline AllocatorInfo MallocMemPool::GetAllocatorInfoForAddrImpl([[maybe_unused]] const void *addr) in GetAllocatorInfoForAddrImpl() argument
110 inline SpaceType MallocMemPool::GetSpaceTypeForAddrImpl([[maybe_unused]] const void *addr) in GetSpaceTypeForAddrImpl() argument
117 inline void *MallocMemPool::GetStartAddrPoolForAddrImpl([[maybe_unused]] const void *addr) in GetStartAddrPoolForAddrImpl() argument
/arkcompiler/runtime_core/static_core/libpandabase/tests/
H A Dmmap_test.cpp116 void DeathWrite64(uintptr_t addr) in DeathWrite64() argument
/arkcompiler/runtime_core/static_core/libpandafile/external/
H A Dpanda_file_external.h37 static std::unique_ptr<PandaFileWrapper> OpenPandafileFromMemory(void *addr, uint64_t *size, in OpenPandafileFromMemory() argument
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/mem/
H A Ditems_pool.h110 auto addr = uintptr_t(item); in IsValidItem() local
/arkcompiler/runtime_core/static_core/runtime/include/
H A Dobject_accessor.h125 uintptr_t addr = ToUintPtr(obj) + offset; in GetDynValue() local
181 auto *addr = reinterpret_cast<T *>(reinterpret_cast<uintptr_t>(obj) + offset); in Get() local
194 auto *addr = reinterpret_cast<T *>(reinterpret_cast<uintptr_t>(obj) + offset); in Set() local
207 auto *addr = reinterpret_cast<T *>(reinterpret_cast<uintptr_t>(obj) + offset); Get() local
216 auto *addr = reinterpret_cast<T *>(reinterpret_cast<uintptr_t>(obj) + offset); Set() local
[all...]
/arkcompiler/runtime_core/static_core/runtime/mem/gc/dynamic/
H A Dgc_marker_dynamic-inl.h70 auto *addr = reinterpret_cast<std::atomic<TaggedType> *>(startAddr + i * TaggedValue::TaggedTypeSize()); in HandleClass() local
/arkcompiler/runtime_core/static_core/runtime/mem/refstorage/
H A Dreference.h92 static Reference *CreateWithoutType(uintptr_t addr) in CreateWithoutType() argument
98 static Reference *Create(uintptr_t addr, ObjectType type) in Create() argument
106 auto addr = ToUintPtr(ref); in GetType() local
112 auto addr = ToUintPtr(ref); in SetType() local
116 SetType(uintptr_t addr, ObjectType type) SetType() argument
129 auto addr = ToUintPtr(ref); GetRefWithoutType() local
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
H A Daot_file_info.cpp40 uint64_t addr = d.GetSecAddr(ElfSecName::TEXT); in CalCallSiteInfo() local
H A Dstub_file_info.h50 void SetAsmStubAddr(void *addr) in SetAsmStubAddr() argument
55 void SetAsmStubAddr(uintptr_t addr) in SetAsmStubAddr() argument

Completed in 9 milliseconds

123456