aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaruncz <marun1@email.cz>2021-04-22 09:10:50 +0200
committermaruncz <marun1@email.cz>2021-04-22 09:10:50 +0200
commit17a6197819236bc9ca9eb8826bfd3b18e63ddabd (patch)
treea8680595fd82f9ad406d1f2d5a90c8e623ced1a4
parentedcfdea949d0c73ee86738f3211a59baaf722101 (diff)
fix formatting
-rw-r--r--fixtest/hiclock.c20
-rw-r--r--fixtest/main.c91
-rw-r--r--libfixmath/fix16.hpp80
3 files changed, 93 insertions, 98 deletions
diff --git a/fixtest/hiclock.c b/fixtest/hiclock.c
index 45a268d..5ce58df 100644
--- a/fixtest/hiclock.c
+++ b/fixtest/hiclock.c
@@ -6,23 +6,23 @@ LONGLONG HICLOCKS_PER_SEC = 0;
void hiclock_init()
{
- LARGE_INTEGER freq;
- QueryPerformanceFrequency(&freq);
- HICLOCKS_PER_SEC = freq.QuadPart;
+ LARGE_INTEGER freq;
+ QueryPerformanceFrequency(&freq);
+ HICLOCKS_PER_SEC = freq.QuadPart;
}
#endif
hiclock_t hiclock()
{
#if defined(__unix__)
- struct timeval clocks;
- gettimeofday(&clocks, NULL);
- return ((uint64_t)clocks.tv_sec * 1000000ULL) + clocks.tv_usec;
+ struct timeval clocks;
+ gettimeofday(&clocks, NULL);
+ return ((uint64_t)clocks.tv_sec * 1000000ULL) + clocks.tv_usec;
#elif defined(__WIN32) || defined(__WIN64)
- LARGE_INTEGER clocks;
- QueryPerformanceCounter(&clocks);
- return clocks.QuadPart;
+ LARGE_INTEGER clocks;
+ QueryPerformanceCounter(&clocks);
+ return clocks.QuadPart;
#else
- return clock();
+ return clock();
#endif
}
diff --git a/fixtest/main.c b/fixtest/main.c
index 36eec44..5f6dd92 100644
--- a/fixtest/main.c
+++ b/fixtest/main.c
@@ -41,61 +41,56 @@
int main(int argc, char **argv)
{
- printf("libfixmath test tool\n");
+ printf("libfixmath test tool\n");
- hiclock_init();
+ hiclock_init();
- uintptr_t args = (1 << 8);
- uintptr_t iter = (1 << 8);
- uintptr_t pass = (1 << 8);
+ uintptr_t args = (1 << 8);
+ uintptr_t iter = (1 << 8);
+ uintptr_t pass = (1 << 8);
- uintptr_t i;
- srand(time(NULL));
+ uintptr_t i;
+ srand(time(NULL));
- hiclock_t fix_duration = 0;
- hiclock_t flt_duration = 0;
- fix16_t fix_error = 0;
+ hiclock_t fix_duration = 0;
+ hiclock_t flt_duration = 0;
+ fix16_t fix_error = 0;
- uintptr_t k;
- for (k = 0; k < pass; k++)
- {
- fix16_t fix_args[args];
- for (i = 0; i < args; i++) fix_args[i] = (rand() ^ (rand() << 16));
- fix16_t fix_result[args];
- hiclock_t fix_start = hiclock();
- for (i = 0; i < iter; i++)
- {
- uintptr_t j;
- for (j = 0; j < args; j++) fix_result[j] = fix_func(fix_args[j]);
- }
- hiclock_t fix_end = hiclock();
+ uintptr_t k;
+ for (k = 0; k < pass; k++)
+ {
+ fix16_t fix_args[args];
+ for (i = 0; i < args; i++) fix_args[i] = (rand() ^ (rand() << 16));
+ fix16_t fix_result[args];
+ hiclock_t fix_start = hiclock();
+ for (i = 0; i < iter; i++)
+ {
+ uintptr_t j;
+ for (j = 0; j < args; j++) fix_result[j] = fix_func(fix_args[j]);
+ }
+ hiclock_t fix_end = hiclock();
- float flt_args[args];
- for (i = 0; i < args; i++) flt_args[i] = fix16_to_float(fix_args[i]);
- float flt_result[args];
- hiclock_t flt_start = hiclock();
- for (i = 0; i < iter; i++)
- {
- uintptr_t j;
- for (j = 0; j < args; j++) flt_result[j] = flt_func(flt_args[j]);
- }
- hiclock_t flt_end = hiclock();
+ float flt_args[args];
+ for (i = 0; i < args; i++) flt_args[i] = fix16_to_float(fix_args[i]);
+ float flt_result[args];
+ hiclock_t flt_start = hiclock();
+ for (i = 0; i < iter; i++)
+ {
+ uintptr_t j;
+ for (j = 0; j < args; j++) flt_result[j] = flt_func(flt_args[j]);
+ }
+ hiclock_t flt_end = hiclock();
- for (i = 0; i < args; i++)
- fix_error += abs(fix16_from_float(flt_result[i]) - fix_result[i]);
- flt_duration += (flt_end - flt_start);
- fix_duration += (fix_end - fix_start);
- }
+ for (i = 0; i < args; i++)
+ fix_error += abs(fix16_from_float(flt_result[i]) - fix_result[i]);
+ flt_duration += (flt_end - flt_start);
+ fix_duration += (fix_end - fix_start);
+ }
- printf("%16s: %08" PRIuHICLOCK " @ %" PRIu32 "Hz\n", flt_func_str,
- flt_duration, HICLOCKS_PER_SEC);
- printf("%16s: %08" PRIuHICLOCK " @ %" PRIu32 "Hz\n", fix_func_str,
- fix_duration, HICLOCKS_PER_SEC);
- printf(" Difference: %08" PRIiHICLOCK " (% 3.2f%%)\n",
- (flt_duration - fix_duration),
- ((fix_duration * 100.0) / flt_duration));
- printf(" Error: %f%%\n",
- ((fix16_to_dbl(fix_error) * 100.0) / (args * pass)));
+ printf("%16s: %08" PRIuHICLOCK " @ %" PRIu32 "Hz\n", flt_func_str, flt_duration, HICLOCKS_PER_SEC);
+ printf("%16s: %08" PRIuHICLOCK " @ %" PRIu32 "Hz\n", fix_func_str, fix_duration, HICLOCKS_PER_SEC);
+ printf(" Difference: %08" PRIiHICLOCK " (% 3.2f%%)\n", (flt_duration - fix_duration), ((fix_duration * 100.0) / flt_duration));
+ printf(" Error: %f%%\n", ((fix16_to_dbl(fix_error) * 100.0) / (args * pass)));
- return EXIT_SUCCESS;
+ return EXIT_SUCCESS;
}
diff --git a/libfixmath/fix16.hpp b/libfixmath/fix16.hpp
index 95f6f9a..7330c60 100644
--- a/libfixmath/fix16.hpp
+++ b/libfixmath/fix16.hpp
@@ -8,11 +8,11 @@ class Fix16 {
fix16_t value;
Fix16() { value = 0; }
- Fix16(const Fix16 &inValue) { value = inValue.value; }
- Fix16(const fix16_t inValue) { value = inValue; }
- Fix16(const float inValue) { value = fix16_from_float(inValue); }
- Fix16(const double inValue) { value = fix16_from_dbl(inValue); }
- Fix16(const int16_t inValue) { value = fix16_from_int(inValue); }
+ Fix16(const Fix16 &inValue) { value = inValue.value; }
+ Fix16(const fix16_t inValue) { value = inValue; }
+ Fix16(const float inValue) { value = fix16_from_float(inValue); }
+ Fix16(const double inValue) { value = fix16_from_dbl(inValue); }
+ Fix16(const int16_t inValue) { value = fix16_from_int(inValue); }
operator fix16_t() const { return value; }
operator double() const { return fix16_to_dbl(value); }
@@ -105,41 +105,41 @@ class Fix16 {
const Fix16 sdiv(const int16_t other) const { Fix16 ret = fix16_sdiv(value, fix16_from_int(other)); return ret; }
#endif
- int operator==(const Fix16 &other) const { return (value == other.value); }
- int operator==(const fix16_t other) const { return (value == other); }
- int operator==(const double other) const { return (value == fix16_from_dbl(other)); }
- int operator==(const float other) const { return (value == fix16_from_float(other)); }
- int operator==(const int16_t other) const { return (value == fix16_from_int(other)); }
-
- int operator!=(const Fix16 &other) const { return (value != other.value); }
- int operator!=(const fix16_t other) const { return (value != other); }
- int operator!=(const double other) const { return (value != fix16_from_dbl(other)); }
- int operator!=(const float other) const { return (value != fix16_from_float(other)); }
- int operator!=(const int16_t other) const { return (value != fix16_from_int(other)); }
-
- int operator<=(const Fix16 &other) const { return (value <= other.value); }
- int operator<=(const fix16_t other) const { return (value <= other); }
- int operator<=(const double other) const { return (value <= fix16_from_dbl(other)); }
- int operator<=(const float other) const { return (value <= fix16_from_float(other)); }
- int operator<=(const int16_t other) const { return (value <= fix16_from_int(other)); }
-
- int operator>=(const Fix16 &other) const { return (value >= other.value); }
- int operator>=(const fix16_t other) const { return (value >= other); }
- int operator>=(const double other) const { return (value >= fix16_from_dbl(other)); }
- int operator>=(const float other) const { return (value >= fix16_from_float(other)); }
- int operator>=(const int16_t other) const { return (value >= fix16_from_int(other)); }
-
- int operator< (const Fix16 &other) const { return (value < other.value); }
- int operator< (const fix16_t other) const { return (value < other); }
- int operator< (const double other) const { return (value < fix16_from_dbl(other)); }
- int operator< (const float other) const { return (value < fix16_from_float(other)); }
- int operator< (const int16_t other) const { return (value < fix16_from_int(other)); }
-
- int operator> (const Fix16 &other) const { return (value > other.value); }
- int operator> (const fix16_t other) const { return (value > other); }
- int operator> (const double other) const { return (value > fix16_from_dbl(other)); }
- int operator> (const float other) const { return (value > fix16_from_float(other)); }
- int operator> (const int16_t other) const { return (value > fix16_from_int(other)); }
+ int operator==(const Fix16 &other) const { return (value == other.value); }
+ int operator==(const fix16_t other) const { return (value == other); }
+ int operator==(const double other) const { return (value == fix16_from_dbl(other)); }
+ int operator==(const float other) const { return (value == fix16_from_float(other)); }
+ int operator==(const int16_t other) const { return (value == fix16_from_int(other)); }
+
+ int operator!=(const Fix16 &other) const { return (value != other.value); }
+ int operator!=(const fix16_t other) const { return (value != other); }
+ int operator!=(const double other) const { return (value != fix16_from_dbl(other)); }
+ int operator!=(const float other) const { return (value != fix16_from_float(other)); }
+ int operator!=(const int16_t other) const { return (value != fix16_from_int(other)); }
+
+ int operator<=(const Fix16 &other) const { return (value <= other.value); }
+ int operator<=(const fix16_t other) const { return (value <= other); }
+ int operator<=(const double other) const { return (value <= fix16_from_dbl(other)); }
+ int operator<=(const float other) const { return (value <= fix16_from_float(other)); }
+ int operator<=(const int16_t other) const { return (value <= fix16_from_int(other)); }
+
+ int operator>=(const Fix16 &other) const { return (value >= other.value); }
+ int operator>=(const fix16_t other) const { return (value >= other); }
+ int operator>=(const double other) const { return (value >= fix16_from_dbl(other)); }
+ int operator>=(const float other) const { return (value >= fix16_from_float(other)); }
+ int operator>=(const int16_t other) const { return (value >= fix16_from_int(other)); }
+
+ int operator< (const Fix16 &other) const { return (value < other.value); }
+ int operator< (const fix16_t other) const { return (value < other); }
+ int operator< (const double other) const { return (value < fix16_from_dbl(other)); }
+ int operator< (const float other) const { return (value < fix16_from_float(other)); }
+ int operator< (const int16_t other) const { return (value < fix16_from_int(other)); }
+
+ int operator> (const Fix16 &other) const { return (value > other.value); }
+ int operator> (const fix16_t other) const { return (value > other); }
+ int operator> (const double other) const { return (value > fix16_from_dbl(other)); }
+ int operator> (const float other) const { return (value > fix16_from_float(other)); }
+ int operator> (const int16_t other) const { return (value > fix16_from_int(other)); }
Fix16 sin() const { return Fix16(fix16_sin(value)); }
Fix16 cos() const { return Fix16(fix16_cos(value)); }