Lines Matching refs:s32
60 ParticleTime(s32 value)
79 s32 GetS32Value() const { return m_ParticleTime / 0x100; }
84 s32 GetParticleTimeValue() const { return m_ParticleTime; }
102 s32 GetIntegralParts() const
116 s32 Floor() const
123 s32 Ceil() const
131 ParticleTime& FMod(s32 value)
138 …ParticleTime& operator =(s32 value) { this->m_ParticleTime = S32ToParticleTime(value); return *thi…
141 …ParticleTime& operator +=(s32 value) { this->m_ParticleTime += S32ToParticleTime(value); return *t…
144 …ParticleTime& operator -=(s32 value) { this->m_ParticleTime -= S32ToParticleTime(value); return *t…
154 bool operator ==(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
155 bool operator !=(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
156 bool operator >=(s32 rhs) const { return this->m_ParticleTime >= S32ToParticleTime(rhs); }
157 bool operator <=(s32 rhs) const { return this->m_ParticleTime <= S32ToParticleTime(rhs); }
158 bool operator >(s32 rhs) const { return this->m_ParticleTime > S32ToParticleTime(rhs); }
159 bool operator <(s32 rhs) const { return this->m_ParticleTime < S32ToParticleTime(rhs); }
166 ParticleTime Interp(const ParticleTime& length, s32 factor) const
168 s32 work = this->m_ParticleTime * factor * 0x100;
179 static f32 ParticleTimeToFloat32(s32 particleTime)
188 static s32 Float32ToParticleTime(f32 value)
190 s32 fixed = (int)(value * 0x100);
197 static s32 S32ToParticleTime(s32 value)
203 s32 m_ParticleTime;
235 ParticleTime(s32 ivalue)
253 s32 GetS32Value() const { return m_ParticleTime; }
272 s32 GetIntegralParts() const
286 s32 Floor() const
293 s32 Ceil() const
301 ParticleTime& FMod(s32 value)
308 ParticleTime& operator =(s32 value) { this->m_ParticleTime = value; return *this; }
311 ParticleTime& operator +=(s32 value) { this->m_ParticleTime += value; return *this; }
314 ParticleTime& operator -=(s32 value) { this->m_ParticleTime -= value; return *this; }
324 bool operator ==(s32 rhs) const { return this->m_ParticleTime == rhs; }
325 bool operator !=(s32 rhs) const { return this->m_ParticleTime == rhs; }
326 bool operator >=(s32 rhs) const { return this->m_ParticleTime >= rhs; }
327 bool operator <=(s32 rhs) const { return this->m_ParticleTime <= rhs; }
328 bool operator >(s32 rhs) const { return this->m_ParticleTime > rhs; }
329 bool operator <(s32 rhs) const { return this->m_ParticleTime < rhs; }
333 ParticleTime Interp(const ParticleTime& length, s32 factor) const