HomeSort by relevance Sort by last modified time
    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) {
49 inline uint32 ByteSwap(uint32 x) {
60 inline uint64 ByteSwap(uint64 x) {
78 return ByteSwap(x);
85 return ByteSwap(x);
92 return ByteSwap(x);
100 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 205 milliseconds