Searched refs:Get8 (Results 1 – 1 of 1) sorted by relevance
/external/chromium/third_party/libjingle/source/talk/base/ |
D | byteorder.h | 52 inline uint8 Get8(const void* memory, size_t offset) { in Get8() function 77 return (static_cast<uint16>(Get8(memory, 0)) << 8) in GetBE16() 78 | (static_cast<uint16>(Get8(memory, 1)) << 0); in GetBE16() 81 return (static_cast<uint32>(Get8(memory, 0)) << 24) in GetBE32() 82 | (static_cast<uint32>(Get8(memory, 1)) << 16) in GetBE32() 83 | (static_cast<uint32>(Get8(memory, 2)) << 8) in GetBE32() 84 | (static_cast<uint32>(Get8(memory, 3)) << 0); in GetBE32() 87 return (static_cast<uint64>(Get8(memory, 0)) << 56) in GetBE64() 88 | (static_cast<uint64>(Get8(memory, 1)) << 48) in GetBE64() 89 | (static_cast<uint64>(Get8(memory, 2)) << 40) in GetBE64() [all …]
|