Home
last modified time | relevance | path

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

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