Home | History | Annotate | Download | only in src

Lines Matching refs:IntType

558 struct IntType
562 inline bool operator == (const IntType<Type,Size> &o) const { return v == o.v; }
563 IntType<Type,Size> &o) const { return v != o.v; }
564 static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); }
565 inline int cmp (IntType<Type,Size> va) const { Type a = va; Type b = v; return a < b ? -1 : a == b ? 0 : +1; }
577 typedef IntType<uint16_t, 2> USHORT; /* 16-bit unsigned integer. */
578 typedef IntType<int16_t, 2> SHORT; /* 16-bit signed integer. */
579 typedef IntType<uint32_t, 4> ULONG; /* 32-bit unsigned integer. */
580 typedef IntType<int32_t, 4> LONG; /* 32-bit signed integer. */
581 typedef IntType<uint32_t, 3> UINT24; /* 24-bit unsigned integer. */