Lines Matching defs:RawBits
208 SmallVector<uint8_t> RawBits;
210 RawBits.push_back(Bits.extractBits(8, I).getZExtValue());
211 return ConstantDataVector::get(Ctx, RawBits);
215 SmallVector<uint16_t> RawBits;
217 RawBits.push_back(Bits.extractBits(16, I).getZExtValue());
219 return ConstantDataVector::getFP(SclTy, RawBits);
220 return ConstantDataVector::get(Ctx, RawBits);
224 SmallVector<uint32_t> RawBits;
226 RawBits.push_back(Bits.extractBits(32, I).getZExtValue());
228 return ConstantDataVector::getFP(SclTy, RawBits);
229 return ConstantDataVector::get(Ctx, RawBits);
234 SmallVector<uint64_t> RawBits;
236 RawBits.push_back(Bits.extractBits(64, I).getZExtValue());
238 return ConstantDataVector::getFP(SclTy, RawBits);
239 return ConstantDataVector::get(Ctx, RawBits);
283 APInt RawBits = Bits->zextOrTrunc(ScalarBitWidth);
284 return ConstantInt::get(Ctx, RawBits);