Lines Matching refs:s32
62 ParticleTime(s32 value)
81 s32 GetS32Value() const { return m_ParticleTime / 0x100; }
86 s32 GetParticleTimeValue() const { return m_ParticleTime; }
118 s32 GetIntegralParts() const
132 s32 Floor() const
139 s32 Ceil() const
147 ParticleTime& FMod(s32 value)
154 …ParticleTime& operator =(s32 value) { this->m_ParticleTime = S32ToParticleTime(value); return *thi…
157 …ParticleTime& operator +=(s32 value) { this->m_ParticleTime += S32ToParticleTime(value); return *t…
160 …ParticleTime& operator -=(s32 value) { this->m_ParticleTime -= S32ToParticleTime(value); return *t…
170 bool operator ==(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
171 bool operator !=(s32 rhs) const { return this->m_ParticleTime == S32ToParticleTime(rhs); }
172 bool operator >=(s32 rhs) const { return this->m_ParticleTime >= S32ToParticleTime(rhs); }
173 bool operator <=(s32 rhs) const { return this->m_ParticleTime <= S32ToParticleTime(rhs); }
174 bool operator >(s32 rhs) const { return this->m_ParticleTime > S32ToParticleTime(rhs); }
175 bool operator <(s32 rhs) const { return this->m_ParticleTime < S32ToParticleTime(rhs); }
182 ParticleTime Interp(const ParticleTime& length, s32 factor) const
184 s32 work = this->m_ParticleTime * factor * 0x100;
195 static f32 ParticleTimeToFloat32(s32 particleTime)
204 static s32 Float32ToParticleTime(f32 value)
206 s32 fixed = (int)(value * 0x100);
213 static s32 S32ToParticleTime(s32 value)
219 s32 m_ParticleTime;
251 ParticleTime(s32 ivalue)
269 s32 GetS32Value() const { return m_ParticleTime; }
298 s32 GetIntegralParts() const
312 s32 Floor() const
319 s32 Ceil() const
327 ParticleTime& FMod(s32 value)
334 ParticleTime& operator =(s32 value) { this->m_ParticleTime = value; return *this; }
337 ParticleTime& operator +=(s32 value) { this->m_ParticleTime += value; return *this; }
340 ParticleTime& operator -=(s32 value) { this->m_ParticleTime -= value; return *this; }
350 bool operator ==(s32 rhs) const { return this->m_ParticleTime == rhs; }
351 bool operator !=(s32 rhs) const { return this->m_ParticleTime == rhs; }
352 bool operator >=(s32 rhs) const { return this->m_ParticleTime >= rhs; }
353 bool operator <=(s32 rhs) const { return this->m_ParticleTime <= rhs; }
354 bool operator >(s32 rhs) const { return this->m_ParticleTime > rhs; }
355 bool operator <(s32 rhs) const { return this->m_ParticleTime < rhs; }
359 ParticleTime Interp(const ParticleTime& length, s32 factor) const