Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DDataExtractor.h33 using uint24_t = Uint24; variable
34 static_assert(sizeof(uint24_t) == 3, "sizeof(uint24_t) != 3");
37 inline uint24_t getSwappedBytes(uint24_t C) { in getSwappedBytes()
38 return uint24_t(C.Bytes[2], C.Bytes[1], C.Bytes[0]); in getSwappedBytes()
/llvm-project-15.0.7/clang/lib/Headers/
H A Dstdint.h192 typedef __UINT24_TYPE__ uint24_t; typedef
194 typedef uint24_t uint_least24_t;
196 typedef uint24_t uint_fast24_t;
198 # define __uint_least16_t uint24_t
200 # define __uint_least8_t uint24_t
/llvm-project-15.0.7/llvm/lib/Support/
H A DDataExtractor.cpp102 uint24_t ExtractedVal = getU<uint24_t>(OffsetPtr, Err); in getU24()
/llvm-project-15.0.7/clang/test/Headers/
H A Dstdint.c109 _Static_assert(UINT24_WIDTH / __CHAR_BIT__ == sizeof(uint24_t), "");