Searched refs:m_CurrentAddress (Results 1 – 3 of 3) sorted by relevance
36 m_CurrentAddress( start ) in m_StartAddress()41 void SetCurrentAddress( void* address ) { m_CurrentAddress = address; } in SetCurrentAddress()44 void* GetCurrentAddress() const { return m_CurrentAddress; } in GetCurrentAddress()52 void* tmp = (void*)( (int)m_CurrentAddress + size ); in MoveAddress()57 m_CurrentAddress = tmp; in MoveAddress()65 void* m_CurrentAddress; variable
878 m_CurrentAddress( start ), in SafeBuffer()886 s32 UsedSize() const { return ut::GetOffsetFromPtr(m_StartAddress, m_CurrentAddress); } in UsedSize()890 operator const u32*() const { return m_CurrentAddress; }906 if (ut::AddOffsetToPtr(m_CurrentAddress, size) <= m_EndAddress) in VerifyWriteSize()934 nw::os::MemCpy(m_CurrentAddress, src, size); in Write()943 *m_CurrentAddress = src; in Write()944 ++m_CurrentAddress; in Write()950 u32* m_CurrentAddress; variable956 m_CurrentAddress = static_cast<u32*>( ut::AddOffsetToPtr(m_CurrentAddress, size) ); in MoveAddress()957 NW_ASSERT(m_CurrentAddress <= m_EndAddress); in MoveAddress()
1389 m_CurrentAddress = m_TopAddress; in CommandBufferInfo()1400 m_CurrentAddress = NULL; in CommandBufferInfo()1412 …return (m_CurrentAddress != NULL)? m_CurrentAddress : reinterpret_cast<u8*>(__cb_current_command_b… in GetCurrentAddress()1422 …return (m_CurrentAddress != NULL)? m_CurrentAddress : reinterpret_cast<const u8*>(__cb_current_com… in GetCurrentAddress()1430 …size_t GetCurrentSize() const { return nw::ut::GetOffsetFromPtr( m_TopAddress, m_CurrentAddress );… in GetCurrentSize()1508 u8* m_CurrentAddress; //!< 現在の書き込み位置のアドレスです。 variable1520 if (m_CurrentAddress == NULL) in CheckRestMemory()1526 return nw::ut::AddOffsetToPtr(m_CurrentAddress, size) <= m_BottomAddress; in CheckRestMemory()1537 if (m_CurrentAddress != NULL) in ForwardAddress()1539 m_CurrentAddress += size; in ForwardAddress()