HomeSort by relevance Sort by last modified time
    Searched defs:ByteSwap (Results 1 - 7 of 7) sorted by null

  /external/google-breakpad/src/common/mac/
byteswap.h 34 // byteswap.h: Overloaded functions for conveniently byteswapping values.
41 static inline uint16_t ByteSwap(uint16_t v) { return OSSwapInt16(v); }
42 static inline uint32_t ByteSwap(uint32_t v) { return OSSwapInt32(v); }
43 static inline uint64_t ByteSwap(uint64_t v) { return OSSwapInt64(v); }
44 static inline int16_t ByteSwap(int16_t v) { return OSSwapInt16(v); }
45 static inline int32_t ByteSwap(int32_t v) { return OSSwapInt32(v); }
46 static inline int64_t ByteSwap(int64_t v) { return OSSwapInt64(v); }
  /external/perf_data_converter/src/quipper/
binary_data_utils.h 8 #include <byteswap.h>
25 void ByteSwap(T* input) {
49 if (swap) ByteSwap(&value);
  /external/libchrome/base/
sys_byteorder.h 5 // This header defines cross-platform ByteSwap() implementations for 16, 32 and
26 inline uint16_t ByteSwap(uint16_t x) {
34 inline uint32_t ByteSwap(uint32_t x) {
42 inline uint64_t ByteSwap(uint64_t x) {
57 return ByteSwap(static_cast<uint32_t>(x));
59 return ByteSwap(static_cast<uint64_t>(x));
71 return ByteSwap(x);
78 return ByteSwap(x);
85 return ByteSwap(x);
93 return ByteSwap(x)
    [all...]
  /external/pdfium/third_party/base/
sys_byteorder.h 5 // This header defines cross-platform ByteSwap() implementations for 16, 32 and
27 inline uint16_t ByteSwap(uint16_t x) {
35 inline uint32_t ByteSwap(uint32_t x) {
43 inline uint64_t ByteSwap(uint64_t x) {
58 return ByteSwap(static_cast<uint32_t>(x));
60 return ByteSwap(static_cast<uint64_t>(x));
72 return ByteSwap(x);
79 return ByteSwap(x);
86 return ByteSwap(x);
94 return ByteSwap(x)
    [all...]
  /external/swiftshader/third_party/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]);
101 // endianness mismatch. Byteswap all words read from the profiling
104 PacketType = ByteSwap(PacketType, ShouldByteSwap);
114 ArgLength = ByteSwap(ArgLength, ShouldByteSwap);
  /art/runtime/mirror/
var_handle.cc 366 static void ByteSwap(JValue* value);
369 ByteSwap(value);
375 void JValueByteSwapper<uint16_t>::ByteSwap(JValue* value) {
380 void JValueByteSwapper<int16_t>::ByteSwap(JValue* value) {
385 void JValueByteSwapper<int32_t>::ByteSwap(JValue* value) {
390 void JValueByteSwapper<int64_t>::ByteSwap(JValue* value) {
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Shell/
PVRShell.cpp 669 #define ByteSwap(x) PVRShellByteSwap((unsigned char*) &x, sizeof(x))
725 ByteSwap(bfType);
726 ByteSwap(bfSize);
727 ByteSwap(bfOffBits);
728 ByteSwap(biSize);
729 ByteSwap(biWidth);
730 ByteSwap(biHeight);
731 ByteSwap(biPlanes);
732 ByteSwap(biBitCount);
733 ByteSwap(biCompression)
    [all...]

Completed in 404 milliseconds