Home | History | Annotate | Download | only in src

Lines Matching defs:IntType

626 struct IntType
630 inline bool operator == (const IntType<Type,Size> &o) const { return (Type) v == (Type) o.v; }
631 inline bool operator != (const IntType<Type,Size> &o) const { return !(*this == o); }
632 static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); }
652 typedef IntType<uint8_t , 1> BYTE; /* 8-bit unsigned integer. */
653 typedef IntType<uint16_t, 2> USHORT; /* 16-bit unsigned integer. */
654 typedef IntType<int16_t, 2> SHORT; /* 16-bit signed integer. */
655 typedef IntType<uint32_t, 4> ULONG; /* 32-bit unsigned integer. */
656 typedef IntType<int32_t, 4> LONG; /* 32-bit signed integer. */
657 typedef IntType<uint32_t, 3> UINT24; /* 24-bit unsigned integer. */