Home
last modified time | relevance | path

Searched refs:ResNum (Results 1 – 2 of 2) sorted by relevance

/NW4C-2.0.3/include/nw/ut/
Dut_ResTypes.h127 class ResNum
130 /* ctor */ ResNum() {} in ResNum() function
131 /* ctor */ ResNum(const ResNum& other) : bits(other.bits) {} in ResNum() function
132 /* ctor */ ResNum(const T val ) : bits( Endian::BSwap( val ) ) {} in ResNum() function
134 void operator = (const ResNum& other) { bits = other.bits; }
143 typedef ResNum<u16> ResU16; //!< @details :private
144 typedef ResNum<s16> ResS16; //!< @details :private
145 typedef ResNum<u32> ResU32; //!< @details :private
146 typedef ResNum<s32> ResS32; //!< @details :private
147 typedef ResNum<f32> ResF32; //!< @details :private
[all …]
/NW4C-2.0.3/include/nw/lyt/
Dlyt_Types.h198 class ResNum
201 ResNum() {} // デフォルトコンストラクタ
203ResNum(const ResNum& other) : m_Bits(other.m_Bits) {} // コピーコンストラクタ
205 ResNum(const T val) : m_Bits(internal::SwapInt(val)) {} // T からの構築
207 void operator = (const ResNum& other) { m_Bits = other.m_Bits; } // 代入演算子
218 class ResNum<f32>
221 ResNum() {} // デフォルトコンストラクタ
223 ResNum(const ResNum& other) : m_Bits(other.m_Bits) {} // コピーコンストラクタ
225 ResNum(const f32 val) // T からの構築
235 void operator = (const ResNum& other) { m_Bits = other.m_Bits; } // 代入演算子
[all …]