vega
math.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <stdint.h>
4 
5 namespace vega {
6  namespace math {
7  int floori(double x);
8  double floorf(double x);
9  int ceili(double x);
10  double ceilf(double x);
11  bool isinteger(double x);
12 
13  double frexp10(double arg, int * exp);
14  float frexp10(float arg, int * exp);
15 
16  unsigned popcount(uint64_t x);
17  }
18 }
int floori(double x)
double floorf(double x)
bool isinteger(double x)
int ceili(double x)
double frexp10(double arg, int *exp)
unsigned popcount(uint64_t x)
double ceilf(double x)
Definition: age.h:6