|
typedef unsigned char | U8 |
| 8 Bit Unsigned.
|
|
typedef char | I8 |
| 8 Bit Signed.
|
|
typedef unsigned short | U16 |
| 16 Bit Unsigned.
|
|
typedef short | I16 |
| 16 Bit Signed.
|
|
typedef unsigned int | U32 |
| 32 Bit Unsigned.
|
|
typedef int | I32 |
| 32 Bit Signed.
|
|
typedef float | F32 |
| 32 Bit Floating Point Value (IEE 754).
|
|
typedef unsigned long | U40 |
| 40 Bit Unsigned on TI C6xx, 64 Bit Unsigned otherwise.
|
|
typedef long | I40 |
| 40 Bit Signed on TI C6xx, 64 Bit Signed otherwise.
|
|
typedef unsigned long long | U64 |
| 64 Bit Unsigned.
|
|
typedef signed long long | I64 |
| 64 Bit Signed.
|
|
typedef double | F64 |
| 64 Bit Floating Point Value (IEE 754).
|
|