Searched refs:BYTE_CAST (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/webrtc/base/
H A Dtestutils.h544 #define BYTE_CAST(x) static_cast<uint8>((x) & 0xFF) macro
547 #define LE16(x) BYTE_CAST(((uint16)x) >> 0), BYTE_CAST(((uint16)x) >> 8)
549 #define LE32(x) BYTE_CAST(((uint32)x) >> 0), BYTE_CAST(((uint32)x) >> 8), \
550 BYTE_CAST(((uint32)x) >> 16), BYTE_CAST(((uint32)x) >> 24)
552 #define LE64(x) BYTE_CAST(((uint64)x) >> 0), BYTE_CAST(((uint64)x) >> 8), \
553 BYTE_CAST(((uint6
[all...]

Completed in 501 milliseconds