OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ByteSwap
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/base/
sys_byteorder.h
5
// This header defines cross-platform
ByteSwap
() implementations for 16, 32 and
23
// Include headers to provide
byteswap
for all platforms.
31
#include <
byteswap
.h>
38
inline uint16
ByteSwap
(uint16 x) {
51
inline uint32
ByteSwap
(uint32 x) {
64
inline uint64
ByteSwap
(uint64 x) {
84
return
ByteSwap
(x);
91
return
ByteSwap
(x);
98
return
ByteSwap
(x);
106
return
ByteSwap
(x)
[
all
...]
/external/llvm/lib/Analysis/
ProfileInfoLoader.cpp
24
//
ByteSwap
-
Byteswap
'Var' if 'Really' is true.
26
static inline unsigned
ByteSwap
(unsigned Var, bool Really) {
51
NumEntries =
ByteSwap
(NumEntries, ShouldByteSwap);
75
Data[i] = AddCounts(
ByteSwap
(TempSpace[i], true), Data[i]);
99
// endianness mismatch.
Byteswap
all words read from the profiling
102
PacketType =
ByteSwap
(PacketType, ShouldByteSwap);
112
ArgLength =
ByteSwap
(ArgLength, ShouldByteSwap);
Completed in 414 milliseconds