Home
last modified time | relevance | path

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

/NW4C-1.3.3/include/nw/ut/
Dut_BinaryReader.h34 m_CurrentAddress( start ) in m_StartAddress()
39 void SetCurrentAddress( void* address ) { m_CurrentAddress = address; } in SetCurrentAddress()
42 void* GetCurrentAddress() const { return m_CurrentAddress; } in GetCurrentAddress()
50 void* tmp = (void*)( (int)m_CurrentAddress + size ); in MoveAddress()
55 m_CurrentAddress = tmp; in MoveAddress()
63 void* m_CurrentAddress; variable
/NW4C-1.3.3/include/nw/gfx/
Dgfx_ShaderBinaryInfo.h876 m_CurrentAddress( start ), in SafeBuffer()
884 s32 UsedSize() const { return ut::GetOffsetFromPtr(m_StartAddress, m_CurrentAddress); } in UsedSize()
888 operator const u32*() const { return m_CurrentAddress; }
904 if (ut::AddOffsetToPtr(m_CurrentAddress, size) <= m_EndAddress) in VerifyWriteSize()
932 nw::os::MemCpy(m_CurrentAddress, src, size); in Write()
941 *m_CurrentAddress = src; in Write()
942 ++m_CurrentAddress; in Write()
948 u32* m_CurrentAddress; variable
954 m_CurrentAddress = static_cast<u32*>( ut::AddOffsetToPtr(m_CurrentAddress, size) ); in MoveAddress()
955 NW_ASSERT(m_CurrentAddress <= m_EndAddress); in MoveAddress()
Dgfx_CommandUtil.h1387 m_CurrentAddress = m_TopAddress; in CommandBufferInfo()
1398 m_CurrentAddress = NULL; in CommandBufferInfo()
1410 …return (m_CurrentAddress != NULL)? m_CurrentAddress : reinterpret_cast<u8*>(__cb_current_command_b… in GetCurrentAddress()
1420 …return (m_CurrentAddress != NULL)? m_CurrentAddress : reinterpret_cast<const u8*>(__cb_current_com… in GetCurrentAddress()
1428 …size_t GetCurrentSize() const { return nw::ut::GetOffsetFromPtr( m_TopAddress, m_CurrentAddress );… in GetCurrentSize()
1506 u8* m_CurrentAddress; //!< 現在の書き込み位置のアドレスです。 variable
1518 if (m_CurrentAddress == NULL) in CheckRestMemory()
1524 return nw::ut::AddOffsetToPtr(m_CurrentAddress, size) <= m_BottomAddress; in CheckRestMemory()
1535 if (m_CurrentAddress != NULL) in ForwardAddress()
1537 m_CurrentAddress += size; in ForwardAddress()