Home
last modified time | relevance | path

Searched refs:CFixed (Results 1 – 4 of 4) sorted by relevance

/dports/games/0ad/0ad-0.0.23b-alpha/source/maths/
H A DFixed.h115 class CFixed
127 static CFixed Zero() { return CFixed(0); } in Zero()
128 static CFixed Epsilon() { return CFixed(1); } in Epsilon()
222 CFixed operator+(CFixed n) const
229 CFixed operator-(CFixed n) const
236 CFixed& operator+=(CFixed n) { *this = *this + n; return *this; }
262 CFixed operator/(CFixed n) const
294 CFixed operator%(CFixed n) const
305 CFixed Absolute() const { return CFixed(abs(value)); } in Absolute()
311 CFixed Multiply(CFixed n) const in Multiply()
[all …]
/dports/benchmarks/sipp/sipp-3.5.1/include/
H A Dstat.hpp598 class CFixed : public CSample class
601 CFixed(double value);
/dports/benchmarks/sipp/sipp-3.5.1/src/
H A Dstat.cpp1760 CFixed::CFixed(double value) in CFixed() function in CFixed
1764 double CFixed::sample() in sample()
1768 int CFixed::textDescr(char *s, int len) in textDescr()
1772 int CFixed::timeDescr(char *s, int len) in timeDescr()
1776 double CFixed::cdfInv(double /*percentile*/) in cdfInv()
H A Dscenario.cpp1111 return new CFixed(val); in parse_distribution()
1119 distribution = new CFixed(value); in parse_distribution()