SIFT
types.hpp
Go to the documentation of this file.
1 #ifndef TYPES_HPP
2 #define TYPES_HPP
3 
4  using u8_t = unsigned char;
5  using i8_t = char;
6  using u16_t = unsigned short int;
7  using i16_t = short int;
8  using u32_t = unsigned long int;
9  using i32_t = long int;
10  using u64_t = unsigned long long int;
11  using i64_t = long long int;
12 
13  using f32_t = float;
14  using f64_t = double;
15  using f80_t = long double;
16 
17 #endif
float f32_t
Definition: types.hpp:13
unsigned short int u16_t
Definition: types.hpp:6
unsigned long int u32_t
Definition: types.hpp:8
unsigned char u8_t
Definition: types.hpp:4
unsigned long long int u64_t
Definition: types.hpp:10
long double f80_t
Definition: types.hpp:15
char i8_t
Definition: types.hpp:5
long long int i64_t
Definition: types.hpp:11
long int i32_t
Definition: types.hpp:9
double f64_t
Definition: types.hpp:14
short int i16_t
Definition: types.hpp:7