Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
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()
/external/clang/lib/Headers/
Dstdint.h203 typedef __UINT24_TYPE__ uint24_t; typedef
205 typedef uint24_t uint_least24_t;
207 typedef uint24_t uint_fast24_t;
209 # define __uint_least16_t uint24_t
211 # define __uint_least8_t uint24_t
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DDataExtractor.cpp72 uint24_t ExtractedVal = in getU24()
73 getU<uint24_t>(offset_ptr, this, IsLittleEndian, Data.data()); in getU24()