Home
last modified time | relevance | path

Searched refs:GetPointer (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/runtime_core/libpandafile/
Dbytecode_instruction.h95 const uint8_t *GetPointer(int32_t offset) const in GetPointer() function
115 return *reinterpret_cast<unaligned_type *>(GetPointer(offset)); in Read()
120 auto *dst = const_cast<uint8_t *>(GetPointer(offset)); in Write()
146 const uint8_t *GetPointer(int32_t offset) const in GetPointer() function
148 return GetPointer(offset, 1); in GetPointer()
158 const uint8_t *GetPointer(int32_t offset, size_t size) const in GetPointer() function
200 auto ptr = reinterpret_cast<unaligned_type *>(GetPointer(offset, sizeof(T))); in Read()
287 return BytecodeInst(Base::GetPointer(offset));
296 const uint8_t *ptr = Base::GetPointer(offset);
/arkcompiler/ets_runtime/ecmascript/jspandafile/bytecode_inst/
Dinstruction.h36 const uint8_t *GetPointer(int32_t offset) const in GetPointer() function
66 return *reinterpret_cast<unaligned_type *>(GetPointer(offset)); in Read()
71 auto *dst = const_cast<uint8_t *>(GetPointer(offset)); in Write()
Dold_instruction.h42 return OldBytecodeInst(OldBytecodeInstBase::GetPointer(offset)); in JumpTo()