Searched refs:word_t (Results 1 – 10 of 10) sorted by relevance
/external/clang/test/CodeGenCXX/ |
D | copy-assign-volatile-synthesis.cpp | 4 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 …]
|
/external/llvm/include/llvm/Bitcode/ |
D | BitstreamReader.h | 148 typedef size_t word_t; typedef 151 word_t CurWord = 0; 158 static const size_t MaxChunkSize = sizeof(word_t) * 8; 193 size_t ByteNo = size_t(BitNo/8) & ~(sizeof(word_t)-1); in JumpToBit() 194 unsigned WordBitNo = unsigned(BitNo & (sizeof(word_t)*8-1)); in JumpToBit() 242 uint8_t Array[sizeof(word_t)] = {0}; in fillCurWord() 256 support::endian::read<word_t, support::little, support::unaligned>( in fillCurWord() 262 word_t Read(unsigned NumBits) { in Read() 268 static const unsigned Mask = sizeof(word_t) > 4 ? 0x3f : 0x1f; in Read() 272 word_t R = CurWord & (~word_t(0) >> (BitsInWord - NumBits)); in Read() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitstream/ |
D | BitstreamReader.h | 90 using word_t = size_t; 93 word_t CurWord = 0; 100 static const constexpr size_t MaxChunkSize = sizeof(word_t) * 8; 131 size_t ByteNo = size_t(BitNo/8) & ~(sizeof(word_t)-1); in JumpToBit() 132 unsigned WordBitNo = unsigned(BitNo & (sizeof(word_t)*8-1)); in JumpToBit() 141 if (Expected<word_t> Res = Read(WordBitNo)) in JumpToBit() 172 if (BitcodeBytes.size() >= NextChar + sizeof(word_t)) { in fillCurWord() 173 BytesRead = sizeof(word_t); in fillCurWord() 175 support::endian::read<word_t, support::little, support::unaligned>( in fillCurWord() 189 Expected<word_t> Read(unsigned NumBits) { in Read() [all …]
|
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/ |
D | NaClBitstreamReader.h | 418 typedef size_t word_t; typedef 419 word_t CurWord; 614 return uintptr_t(BitNo / CHAR_BIT) & ~(sizeof(word_t) - 1); in getStartWordByteForBit() 619 return unsigned(BitNo & (sizeof(word_t) * CHAR_BIT - 1)); in getWordBitNo() 625 (getWordBitNo(BitNo) ? sizeof(word_t) : 0); in getEndWordByteForBit() 655 uint8_t Array[sizeof(word_t)] = {0}; in fillCurWord() 666 support::endian::read<word_t, support::little, support::unaligned>( in fillCurWord() 672 word_t Read(unsigned NumBits) { in Read() 673 static const unsigned BitsInWord = sizeof(word_t) * CHAR_BIT; in Read() 678 static const unsigned Mask = sizeof(word_t) > 4 ? 0x3f : 0x1f; in Read() [all …]
|
/external/mesa3d/include/android_stub/backtrace/ |
D | Backtrace.h | 31 typedef uint64_t word_t; typedef 34 typedef uint32_t word_t; typedef 148 virtual bool ReadWord(uint64_t ptr, word_t* out_value) = 0; 196 virtual bool VerifyReadWordArgs(uint64_t ptr, word_t* out_value);
|
/external/selinux/mcstrans/src/ |
D | mcstrans.c | 73 } word_t; typedef 82 word_t *words; 90 word_t **sword; 251 destroy_word(word_t **list, word_t *word) { in destroy_word() 265 memset(word, 0, sizeof(word_t)); in destroy_word() 269 static word_t * 270 create_word(word_t **list, const char *text) { in create_word() 271 word_t *w = calloc(1, sizeof(word_t)); in create_word() 433 word_t *word = create_word(&group->words, trans); in add_word() 962 word_t *w1 = *(word_t **)p1; in word_size() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Bitstream/Reader/ |
D | BitstreamReader.cpp | 48 Expected<word_t> MaybeNum = Read(bitc::BlockSizeWidth); in EnterSubBlock() 51 word_t NumWords = MaybeNum.get(); in EnterSubBlock() 281 if (Expected<SimpleBitstreamCursor::word_t> MaybeVal = in readRecord() 297 if (Expected<SimpleBitstreamCursor::word_t> MaybeVal = Read(6)) in readRecord() 352 Expected<word_t> MaybeIsLiteral = Read(1); in ReadAbbrevRecord() 364 Expected<word_t> MaybeEncoding = Read(3); in ReadAbbrevRecord()
|
/external/sfntly/cpp/src/sfntly/port/ |
D | type.h | 31 typedef uint16_t word_t; typedef
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
D | BitcodeAnalyzer.cpp | 409 if (Expected<SimpleBitstreamCursor::word_t> MaybeWord = Stream.Read(size)) in ReadSignature()
|
D | BitcodeReader.cpp | 113 if (Expected<SimpleBitstreamCursor::word_t> Res = Stream.Read(8)) { in hasInvalidBitcodeHeader() 120 if (Expected<SimpleBitstreamCursor::word_t> Res = Stream.Read(4)) { in hasInvalidBitcodeHeader()
|