Searched refs:BitNo (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamWriter.h104 void BackpatchWord(uint64_t BitNo, unsigned NewWord) { argument
106 unsigned ByteNo = BitNo / 8;
108 &Out[ByteNo], BitNo & 7)) &&
111 &Out[ByteNo], NewWord, BitNo & 7);
114 void BackpatchWord64(uint64_t BitNo, uint64_t Val) { argument
115 BackpatchWord(BitNo, (uint32_t)Val);
116 BackpatchWord(BitNo + 32, (uint32_t)(Val >> 32));
239 uint64_t BitNo = uint64_t(B.StartSizeWord) * 32; local
242 BackpatchWord(BitNo, SizeInWords);
H A DBitstreamReader.h131 Error JumpToBit(uint64_t BitNo) { argument
132 size_t ByteNo = size_t(BitNo/8) & ~(sizeof(word_t)-1);
133 unsigned WordBitNo = unsigned(BitNo & (sizeof(word_t)*8-1));
159 const uint8_t *getPointerToBit(uint64_t BitNo, uint64_t NumBytes) { argument
160 assert(!(BitNo % 8) && "Expected bit on byte boundary");
161 return getPointerToByte(BitNo / 8, NumBytes);
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp1052 unsigned Num, BitNo;
1053 Num = BitNo = 0;
1073 BitNo = 0;
1086 ++BitNo;
1087 FieldVal = FieldVal | Val << BitNo;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h592 static APInt getOneBitSet(unsigned numBits, unsigned BitNo) { argument
594 Res.setBit(BitNo);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp10534 unsigned BitNo; // Bit # of CR6.
10539 BitNo = 0; InvertBit = false;
10542 BitNo = 0; InvertBit = true;
10545 BitNo = 2; InvertBit = false;
10548 BitNo = 2; InvertBit = true;
10554 DAG.getConstant(8 - (3 - BitNo), dl, MVT::i32));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp21960 SDValue Src, BitNo;
21975 BitNo = Op0.getOperand(1);
21984 BitNo = AndLHS.getOperand(1);
21992 BitNo = DAG.getConstant(Log2_64_Ceil(AndRHSVal), dl,
22011 // shorter encoding. Since the former takes the modulo 32 of BitNo and the
22012 // latter takes the modulo 64, this is only valid if the 5th bit of BitNo is
22015 DAG.MaskedValueIsZero(BitNo, APInt(BitNo.getValueSizeInBits(), 32)))
22020 if (Src.getValueType() != BitNo.getValueType())
22021 BitNo
[all...]

Completed in 294 milliseconds