Home
last modified time | relevance | path

Searched refs:word_t (Results 1 – 2 of 2) sorted by relevance

/minix/external/bsd/llvm/dist/clang/test/CodeGenCXX/
H A Dcopy-assign-volatile-synthesis.cpp4 typedef unsigned long word_t; typedef
12 word_t vector : 8;
14 word_t delivery_mode : 3;
15 word_t dest_mode : 1;
17 word_t delivery_status : 1;
18 word_t polarity : 1;
19 word_t irr : 1;
20 word_t trigger_mode : 1;
22 word_t mask : 1;
23 word_t _pad0 : 15;
[all …]
/minix/external/bsd/llvm/dist/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h179 typedef size_t word_t; typedef
180 word_t CurWord;
304 uintptr_t ByteNo = uintptr_t(BitNo/8) & ~(sizeof(word_t)-1); in JumpToBit()
305 unsigned WordBitNo = unsigned(BitNo & (sizeof(word_t)*8-1)); in JumpToBit()
321 uint8_t Array[sizeof(word_t)] = {0}; in fillCurWord()
339 word_t Read(unsigned NumBits) { in Read()
340 static const unsigned BitsInWord = sizeof(word_t) * 8; in Read()
349 word_t R = CurWord & (~word_t(0) >> (BitsInWord - NumBits)); in Read()
358 word_t R = BitsInCurWord ? CurWord : 0; in Read()
367 word_t R2 = CurWord & (~word_t(0) >> (BitsInWord - BitsLeft)); in Read()
[all …]