Lines Matching refs:UInt32
202 #define GetUi32(p) (*(const UInt32 *)(const void *)(p))
206 #define SetUi32(p, v) { *(UInt32 *)(p) = (v); }
217 ((UInt32)((const Byte *)(p))[1] << 8) | \
218 ((UInt32)((const Byte *)(p))[2] << 16) | \
219 ((UInt32)((const Byte *)(p))[3] << 24))
223 #define SetUi16(p, v) { Byte *_ppp_ = (Byte *)(p); UInt32 _vvv_ = (v); \
227 #define SetUi32(p, v) { Byte *_ppp_ = (Byte *)(p); UInt32 _vvv_ = (v); \
234 SetUi32(_ppp2_ , (UInt32)_vvv2_); \
235 SetUi32(_ppp2_ + 4, (UInt32)(_vvv2_ >> 32)); }
256 #define GetBe32(p) _byteswap_ulong(*(const UInt32 *)(const Byte *)(p))
259 #define SetBe32(p, v) (*(UInt32 *)(void *)(p)) = _byteswap_ulong(v)
266 #define GetBe32(p) __builtin_bswap32(*(const UInt32 *)(const Byte *)(p))
269 #define SetBe32(p, v) (*(UInt32 *)(void *)(p)) = __builtin_bswap32(v)
274 ((UInt32)((const Byte *)(p))[0] << 24) | \
275 ((UInt32)((const Byte *)(p))[1] << 16) | \
276 ((UInt32)((const Byte *)(p))[2] << 8) | \
281 #define SetBe32(p, v) { Byte *_ppp_ = (Byte *)(p); UInt32 _vvv_ = (v); \
304 UInt32 maxFunc;
305 UInt32 vendor[3];
306 UInt32 ver;
307 UInt32 b;
308 UInt32 c;
309 UInt32 d;
319 void MyCPUID(UInt32 function, UInt32 *a, UInt32 *b, UInt32 *c, UInt32 *d);