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

/external/chromium_org/third_party/webrtc/base/
H A Dbyteorder.h34 inline uint8 Get8(const void* memory, size_t offset) { function in namespace:rtc
62 return static_cast<uint16>((Get8(memory, 0) << 8) |
63 (Get8(memory, 1) << 0));
67 return (static_cast<uint32>(Get8(memory, 0)) << 24) |
68 (static_cast<uint32>(Get8(memory, 1)) << 16) |
69 (static_cast<uint32>(Get8(memory, 2)) << 8) |
70 (static_cast<uint32>(Get8(memory, 3)) << 0);
74 return (static_cast<uint64>(Get8(memory, 0)) << 56) |
75 (static_cast<uint64>(Get8(memory, 1)) << 48) |
76 (static_cast<uint64>(Get8(memor
[all...]
H A Dbyteorder_unittest.cc72 EXPECT_EQ(0x01u, Get8(buf, 0));
73 EXPECT_EQ(0x23u, Get8(buf, 1));
/external/lldb/tools/debugserver/source/
H A DDNBDataRef.cpp62 // Get8
65 DNBDataRef::Get8(offset_t *offset_ptr) const function in class:DNBDataRef
152 case 1: return Get8 (offset_ptr); break;
174 case 1: return Get8 (offset_ptr); break;
366 case TypeUInt8: str_offset += snprintf(str + str_offset, sizeof(str) - str_offset, format ? format : " %2.2x", Get8(&offset)); break;
369 char ch = Get8(&offset);
H A DDNBDataRef.h93 uint8_t Get8(offset_t *offset_ptr) const;

Completed in 875 milliseconds