Home
last modified time | relevance | path

Searched refs:uint24_t (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DDataExtractor.h34 using uint24_t = Uint24; variable
35 static_assert(sizeof(uint24_t) == 3, "sizeof(uint24_t) != 3");
38 inline uint24_t getSwappedBytes(uint24_t C) { in getSwappedBytes()
39 return uint24_t(C.Bytes[2], C.Bytes[1], C.Bytes[0]); in getSwappedBytes()
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dstdint.h228 typedef __UINT24_TYPE__ uint24_t; typedef
230 typedef uint24_t uint_least24_t;
232 typedef uint24_t uint_fast24_t;
236 # define __uint_least16_t uint24_t
240 # define __uint_least8_t uint24_t
/freebsd/contrib/llvm-project/libc/include/llvm-libc-macros/
H A Dstdint-macros.h171 typedef __UINT24_TYPE__ uint24_t; typedef
173 typedef uint24_t uint_least24_t;
175 typedef uint24_t uint_fast24_t;
179 #define __uint_least16_t uint24_t
183 #define __uint_least8_t uint24_t
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDataExtractor.cpp103 uint24_t ExtractedVal = getU<uint24_t>(OffsetPtr, Err); in getU24()