Searched refs:BYTE_CAST (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/third_party/webrtc/base/ |
D | testutils.h | 544 #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(((uint64)x) >> 16), BYTE_CAST(((uint64)x) >> 24), \ 554 BYTE_CAST(((uint64)x) >> 32), BYTE_CAST(((uint64)x) >> 40), \ 555 BYTE_CAST(((uint64)x) >> 48), BYTE_CAST(((uint64)x) >> 56) 558 #define BE16(x) BYTE_CAST(((uint16)x) >> 8), BYTE_CAST(((uint16)x) >> 0) 560 #define BE32(x) BYTE_CAST(((uint32)x) >> 24), BYTE_CAST(((uint32)x) >> 16), \ [all …]
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
D | testutils.h | 561 #define BYTE_CAST(x) static_cast<uint8>((x) & 0xFF) macro 564 #define LE16(x) BYTE_CAST(((uint16)x) >> 0), BYTE_CAST(((uint16)x) >> 8) 566 #define LE32(x) BYTE_CAST(((uint32)x) >> 0), BYTE_CAST(((uint32)x) >> 8), \ 567 BYTE_CAST(((uint32)x) >> 16), BYTE_CAST(((uint32)x) >> 24) 569 #define LE64(x) BYTE_CAST(((uint64)x) >> 0), BYTE_CAST(((uint64)x) >> 8), \ 570 BYTE_CAST(((uint64)x) >> 16), BYTE_CAST(((uint64)x) >> 24), \ 571 BYTE_CAST(((uint64)x) >> 32), BYTE_CAST(((uint64)x) >> 40), \ 572 BYTE_CAST(((uint64)x) >> 48), BYTE_CAST(((uint64)x) >> 56) 575 #define BE16(x) BYTE_CAST(((uint16)x) >> 8), BYTE_CAST(((uint16)x) >> 0) 577 #define BE32(x) BYTE_CAST(((uint32)x) >> 24), BYTE_CAST(((uint32)x) >> 16), \ [all …]
|