#include <stdint.h>
#include "fl/namespace.h"
Go to the source code of this file.
|
typedef qfx< uint16_t, 12, 4 > | q124 |
| A 12.4 integer (12 bits integer, 4 bits fraction)
|
|
typedef qfx< uint8_t, 4, 4 > | q44 |
| A 4.4 integer (4 bits integer, 4 bits fraction)
|
|
typedef qfx< uint8_t, 6, 2 > | q62 |
| A 6.2 integer (6 bits integer, 2 bits fraction)
|
|
typedef qfx< uint16_t, 8, 8 > | q88 |
| A 8.8 integer (8 bits integer, 8 bits fraction)
|
|
|
template<class T, int F, int I> |
static int16_t | operator* (int16_t v, qfx< T, F, I > &q) |
|
template<class T, int F, int I> |
static int32_t | operator* (int32_t v, qfx< T, F, I > &q) |
|
template<class T, int F, int I> |
static uint16_t | operator* (uint16_t v, qfx< T, F, I > &q) |
|
template<class T, int F, int I> |
static uint32_t | operator* (uint32_t v, qfx< T, F, I > &q) |
|