Searched refs:ResNum (Results 1 – 2 of 2) sorted by relevance
127 class ResNum130 /* ctor */ ResNum() {} in ResNum() function131 /* ctor */ ResNum(const ResNum& other) : bits(other.bits) {} in ResNum() function132 /* ctor */ ResNum(const T val ) : bits( Endian::BSwap( val ) ) {} in ResNum() function134 void operator = (const ResNum& other) { bits = other.bits; }143 typedef ResNum<u16> ResU16; //!< @details :private144 typedef ResNum<s16> ResS16; //!< @details :private145 typedef ResNum<u32> ResU32; //!< @details :private146 typedef ResNum<s32> ResS32; //!< @details :private147 typedef ResNum<f32> ResF32; //!< @details :private[all …]
198 class ResNum201 ResNum() {} // デフォルトコンストラクタ203 … ResNum(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 …]