OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Get8
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/webrtc/base/
byteorder.h
34
inline uint8
Get8
(const void* memory, size_t offset) {
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
(memory, 2)) << 40)
[
all
...]
byteorder_unittest.cc
72
EXPECT_EQ(0x01u,
Get8
(buf, 0));
73
EXPECT_EQ(0x23u,
Get8
(buf, 1));
/external/lldb/tools/debugserver/source/
DNBDataRef.cpp
62
//
Get8
65
DNBDataRef::
Get8
(offset_t *offset_ptr) const
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);
DNBDataRef.h
93
uint8_t
Get8
(offset_t *offset_ptr) const;
Completed in 980 milliseconds