Searched refs:ResNum (Results 1 – 2 of 2) sorted by relevance
125 class ResNum128 /* ctor */ ResNum() {} in ResNum() function129 /* ctor */ ResNum(const ResNum& other) : bits(other.bits) {} in ResNum() function130 /* ctor */ ResNum(const T val ) : bits( Endian::BSwap( val ) ) {} in ResNum() function132 void operator = (const ResNum& other) { bits = other.bits; }141 typedef ResNum<u16> ResU16; //!< @details :private142 typedef ResNum<s16> ResS16; //!< @details :private143 typedef ResNum<u32> ResU32; //!< @details :private144 typedef ResNum<s32> ResS32; //!< @details :private145 typedef ResNum<f32> ResF32; //!< @details :private[all …]
196 class ResNum199 ResNum() {} // デフォルトコンストラクタ201 … ResNum(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 …]