Searched defs:BitNo (Results 1 - 11 of 11) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DAPInt.h480 static APInt getOneBitSet(unsigned numBits, unsigned BitNo) { argument
482 Res.setBit(BitNo);
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DAPInt.h447 static APInt getOneBitSet(unsigned numBits, unsigned BitNo) { argument
449 Res.setBit(BitNo);
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DAPInt.h484 static APInt getOneBitSet(unsigned numBits, unsigned BitNo) { argument
486 Res.setBit(BitNo);
/external/llvm/include/llvm/Bitcode/
H A DBitstreamWriter.h105 void BackpatchWord(uint64_t BitNo, unsigned NewWord) { argument
107 unsigned ByteNo = BitNo / 8;
109 &Out[ByteNo], BitNo & 7)) &&
112 &Out[ByteNo], NewWord, BitNo & 7);
244 uint64_t BitNo = uint64_t(B.StartSizeWord) * 32; local
247 BackpatchWord(BitNo, SizeInWords);
H A DBitstreamReader.h192 void JumpToBit(uint64_t BitNo) { argument
193 size_t ByteNo = size_t(BitNo/8) & ~(sizeof(word_t)-1);
194 unsigned WordBitNo = unsigned(BitNo & (sizeof(word_t)*8-1));
232 const uint8_t *getPointerToBit(uint64_t BitNo, uint64_t NumBytes) { argument
233 assert(!(BitNo % 8) && "Expected bit on byte boundary");
234 return getPointerToByte(BitNo / 8, NumBytes);
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
H A DBitstreamReader.h246 void JumpToBit(uint64_t BitNo) { argument
247 uintptr_t ByteNo = uintptr_t(BitNo/8) & ~3;
248 uintptr_t WordBitNo = uintptr_t(BitNo) & 31;
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DARMDecoderEmitter.cpp936 unsigned Num, BitNo; local
937 Num = BitNo = 0;
960 BitNo = 0;
973 ++BitNo;
974 FieldVal = FieldVal | Val << BitNo;
H A DFixedLenDecoderEmitter.cpp683 unsigned Num, BitNo; local
684 Num = BitNo = 0;
707 BitNo = 0;
720 ++BitNo;
721 FieldVal = FieldVal | Val << BitNo;
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
H A DNaClBitstreamReader.h619 /// Returns the starting byte of the word containing BitNo.
620 uintptr_t getStartWordByteForBit(uint64_t BitNo) const {
621 return uintptr_t(BitNo/CHAR_BIT) & ~(sizeof(word_t)-1);
624 /// Returns the index of BitNo within the word it appears in.
625 unsigned getWordBitNo(uint64_t BitNo) const {
626 return unsigned(BitNo & (sizeof(word_t)*CHAR_BIT-1));
629 /// Returns the ending byte of the word containing BitNo.
630 uintptr_t getEndWordByteForBit(uint64_t BitNo) const {
631 return getStartWordByteForBit(BitNo) +
632 (getWordBitNo(BitNo)
645 JumpToBit(uint64_t BitNo) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCISelLowering.cpp4397 unsigned BitNo; // Bit # of CR6. local
4402 BitNo = 0; InvertBit = false;
4405 BitNo = 0; InvertBit = true;
4408 BitNo = 2; InvertBit = false;
4411 BitNo = 2; InvertBit = true;
4417 DAG.getConstant(8-(3-BitNo), MVT::i32));
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp7813 unsigned BitNo; // Bit # of CR6. local
7818 BitNo = 0; InvertBit = false;
7821 BitNo = 0; InvertBit = true;
7824 BitNo = 2; InvertBit = false;
7827 BitNo = 2; InvertBit = true;
7833 DAG.getConstant(8 - (3 - BitNo), dl, MVT::i32));

Completed in 537 milliseconds