Lines Matching refs:UInt32
105 #define GetUi32(p) (*(const UInt32 *)(const void *)(p))
109 #define SetUi32(p, v) { *(UInt32 *)(p) = (v); }
120 ((UInt32)((const Byte *)(p))[1] << 8) | \
121 ((UInt32)((const Byte *)(p))[2] << 16) | \
122 ((UInt32)((const Byte *)(p))[3] << 24))
126 #define SetUi16(p, v) { Byte *_ppp_ = (Byte *)(p); UInt32 _vvv_ = (v); \
130 #define SetUi32(p, v) { Byte *_ppp_ = (Byte *)(p); UInt32 _vvv_ = (v); \
137 SetUi32(_ppp2_ , (UInt32)_vvv2_); \
138 SetUi32(_ppp2_ + 4, (UInt32)(_vvv2_ >> 32)); }
151 #define GetBe32(p) _byteswap_ulong(*(const UInt32 *)(const Byte *)(p))
154 #define SetBe32(p, v) (*(UInt32 *)(void *)(p)) = _byteswap_ulong(v)
158 #define GetBe32(p) __builtin_bswap32(*(const UInt32 *)(const Byte *)(p))
161 #define SetBe32(p, v) (*(UInt32 *)(void *)(p)) = __builtin_bswap32(v)
166 ((UInt32)((const Byte *)(p))[0] << 24) | \
167 ((UInt32)((const Byte *)(p))[1] << 16) | \
168 ((UInt32)((const Byte *)(p))[2] << 8) | \
173 #define SetBe32(p, v) { Byte *_ppp_ = (Byte *)(p); UInt32 _vvv_ = (v); \
192 UInt32 maxFunc;
193 UInt32 vendor[3];
194 UInt32 ver;
195 UInt32 b;
196 UInt32 c;
197 UInt32 d;
207 void MyCPUID(UInt32 function, UInt32 *a, UInt32 *b, UInt32 *c, UInt32 *d);