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

  /external/swiftshader/third_party/LLVM/include/llvm/Support/
SwapByteOrder.h 1 //===- SwapByteOrder.h - Generic and optimized byte swaps -------*- C++ -*-===//
71 inline unsigned char SwapByteOrder(unsigned char C) { return C; }
72 inline signed char SwapByteOrder(signed char C) { return C; }
73 inline char SwapByteOrder(char C) { return C; }
75 inline unsigned short SwapByteOrder(unsigned short C) { return SwapByteOrder_16(C); }
76 inline signed short SwapByteOrder( signed short C) { return SwapByteOrder_16(C); }
78 inline unsigned int SwapByteOrder(unsigned int C) { return SwapByteOrder_32(C); }
79 inline signed int SwapByteOrder( signed int C) { return SwapByteOrder_32(C); }
82 inline unsigned long SwapByteOrder(unsigned long C) { return SwapByteOrder_32(C); }
83 inline signed long SwapByteOrder( signed long C) { return SwapByteOrder_32(C);
    [all...]
  /external/pdfium/core/fxcrt/
cfx_seekablestreamproxy.cpp 105 void SwapByteOrder(wchar_t* pStr, size_t iLength) {
244 SwapByteOrder(pStr, iMaxLength);

Completed in 1959 milliseconds