Home | History | Annotate | Download | only in utilities

Lines Matching defs:Bytes

237  * RETURN:      UINT32 integer with bytes swapped
239 * DESCRIPTION: Convert a 32-bit value to big-endian (swap the bytes)
250 UINT8 Bytes[4];
255 UINT8 Bytes[4];
264 Out.Bytes[0] = In.Bytes[3];
265 Out.Bytes[1] = In.Bytes[2];
266 Out.Bytes[2] = In.Bytes[1];
267 Out.Bytes[3] = In.Bytes[0];