OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HEXBASE
(Results
1 - 2
of
2
) sorted by null
/external/lldb/include/lldb/Core/
IOStreamMacros.h
17
#define
HEXBASE
'0' << 'x' << RAW_HEXBASE
22
#define HEX8(x)
HEXBASE
<< std::setw(2) << ((uint32_t)(x))
23
#define HEX16
HEXBASE
<< std::setw(4)
24
#define HEX32
HEXBASE
<< std::setw(8)
25
#define HEX64
HEXBASE
<< std::setw(16)
27
#define HEX(x)
HEXBASE
<< std::setw(sizeof(x)*2) << (x)
28
#define HEX_SIZE(x, sz)
HEXBASE
<< std::setw((sz)) << (x)
/external/lldb/tools/debugserver/source/
RNBRemote.cpp
39
#define
HEXBASE
'0' << 'x' << RAW_HEXBASE
44
#define HEX8(x)
HEXBASE
<< std::setw(2) << ((uint32_t)(x))
45
#define HEX16
HEXBASE
<< std::setw(4)
46
#define HEX32
HEXBASE
<< std::setw(8)
47
#define HEX64
HEXBASE
<< std::setw(16)
49
#define HEX(x)
HEXBASE
<< std::setw(sizeof(x)*2) << (x)
51
#define HEX_SIZE(x, sz)
HEXBASE
<< std::setw((sz)) << (x)
[
all
...]
Completed in 2395 milliseconds