HomeSort by relevance Sort by last modified time
    Searched refs:ENDSWAP_32 (Results 1 - 3 of 3) sorted by null

  /external/flac/include/share/
endswap.h 45 #define ENDSWAP_32(x) (__builtin_bswap32 (x))
50 #define ENDSWAP_32(x) (_byteswap_ulong (x))
57 #define ENDSWAP_32(x) (bswap_32 (x))
62 #define ENDSWAP_32(x) ((((x) >> 24) & 0xFF) | (((x) >> 8) & 0xFF00) | (((x) & 0xFF00) << 8) | (((x) & 0xFF) << 24))
71 #define H2LE_32(x) ENDSWAP_32 (x)
  /external/flac/libFLAC/
bitreader.c 58 #define SWAP_BE_WORD_TO_HOST(x) ENDSWAP_32(x)
bitwriter.c 57 #define SWAP_BE_WORD_TO_HOST(x) ENDSWAP_32(x)

Completed in 52 milliseconds