Home
last modified time | relevance | path

Searched defs:bswap16 (Results 1 – 2 of 2) sorted by relevance

/llvm-project/libc/AOR_v20.02/networking/
H A Dchksum_common.h40 #define bswap16(x) __builtin_bswap16((x)) macro
47 #define bswap16(x) ((uint8_t)((x) >> 8) | ((uint8_t)(x) << 8)) macro
/llvm-project/clang/test/CodeGen/
H A Dbuiltins.cpp18 decltype(__builtin_bswap16(0)) bswap16 = 42; variable