Lines Matching full:getaddress
105 inline uintptr_t GetAddress() const in GetAddress() function
111 explicit JSHandle(const JSHandle<S> &handle) : address_(handle.GetAddress()) {} in JSHandle()
117 return JSHandle<T>(handle.GetAddress()); in Cast()
123 if (GetAddress() == 0U) { in GetTaggedValue()
126 …return *reinterpret_cast<JSTaggedValue *>(GetAddress()); // NOLINT(clang-analyzer-core.NullDerefer… in GetTaggedValue()
132 if (GetAddress() == 0U) { in GetTaggedType()
135 …return *reinterpret_cast<JSTaggedType *>(GetAddress()); // NOLINT(clang-analyzer-core.NullDerefere… in GetTaggedType()
160 return GetAddress() == 0U; in IsEmpty()
210 // Barriers::UpdateSlot(reinterpret_cast<JSTaggedValue*>(GetAddress()), 0);
211 return reinterpret_cast<JSTaggedValue *>(GetAddress());
217 // Barriers::UpdateSlot(reinterpret_cast<JSTaggedValue*>(GetAddress()), 0);
218 return reinterpret_cast<JSTaggedValue *>(GetAddress());
244 return JSMutableHandle<T>(handle.GetAddress()); in Cast()
249 auto addr = reinterpret_cast<JSTaggedValue *>(this->GetAddress()); in Update()
257 auto addr = reinterpret_cast<JSTaggedValue *>(this->GetAddress()); in Update()