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

/external/chromium/third_party/libjingle/source/talk/base/
H A Dbyteorder.h52 inline uint8 Get8(const void* memory, size_t offset) { function in namespace:talk_base
77 return (static_cast<uint16>(Get8(memory, 0)) << 8)
78 | (static_cast<uint16>(Get8(memory, 1)) << 0);
81 return (static_cast<uint32>(Get8(memory, 0)) << 24)
82 | (static_cast<uint32>(Get8(memory, 1)) << 16)
83 | (static_cast<uint32>(Get8(memory, 2)) << 8)
84 | (static_cast<uint32>(Get8(memory, 3)) << 0);
87 return (static_cast<uint64>(Get8(memory, 0)) << 56)
88 | (static_cast<uint64>(Get8(memory, 1)) << 48)
89 | (static_cast<uint64>(Get8(memor
[all...]

Completed in 99 milliseconds