Lines Matching refs:NewBits
263 SmallVector<Init *, 16> NewBits(CurVal->getNumBits()); in SetValue() local
268 if (NewBits[Bit]) in SetValue()
271 NewBits[Bit] = BI->getBit(i); in SetValue()
275 if (!NewBits[i]) in SetValue()
276 NewBits[i] = CurVal->getBit(i); in SetValue()
278 V = BitsInit::get(Records, NewBits); in SetValue()
2720 SmallVector<Init *, 16> NewBits; in ParseSimpleValue() local
2732 NewBits.push_back(BI->getBit((e - i) - 1)); in ParseSimpleValue()
2739 NewBits.push_back(VI->getBit((e - i) - 1)); in ParseSimpleValue()
2751 NewBits.push_back(Bit); in ParseSimpleValue()
2753 std::reverse(NewBits.begin(), NewBits.end()); in ParseSimpleValue()
2754 return BitsInit::get(Records, NewBits); in ParseSimpleValue()