Searched refs:ToSize (Results 1 – 3 of 3) sorted by relevance
5335 void pad(uint64_t ToSize) { in pad()5336 assert(ToSize >= Size && "Cannot remove elements"); in pad()5337 if (ToSize == Size) in pad()5342 if (Aligned > Size && Aligned <= ToSize) { in pad()5348 while (Size + 64 <= ToSize) { in pad()5354 if (Size < ToSize) { in pad()5355 Elems.push_back(llvm::IntegerType::get(Context, ToSize - Size)); in pad()5356 Size = ToSize; in pad()
1815 uint64_t ToSize = Context.getTypeSize(PromoteTypes[Idx]); in IsIntegralPromotion() local1816 if (FromSize < ToSize || in IsIntegralPromotion()1817 (FromSize == ToSize && in IsIntegralPromotion()1842 APSInt ToSize(BitWidth.getBitWidth(), BitWidth.isUnsigned()); in IsIntegralPromotion() local1843 ToSize = Context.getTypeSize(ToType); in IsIntegralPromotion()1846 if (BitWidth < ToSize || in IsIntegralPromotion()1847 (FromType->isSignedIntegerType() && BitWidth <= ToSize)) { in IsIntegralPromotion()1853 if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) { in IsIntegralPromotion()
4388 uint64_t ToSize = getTypeSize(PromoteTypes[Idx]); in getPromotedIntegerType() local4389 if (FromSize < ToSize || in getPromotedIntegerType()4390 (FromSize == ToSize && in getPromotedIntegerType()