Home
last modified time | relevance | path

Searched refs:ToSize (Results 1 – 3 of 3) sorted by relevance

/trueos/contrib/llvm/tools/clang/lib/CodeGen/
HDTargetInfo.cpp5335 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()
/trueos/contrib/llvm/tools/clang/lib/Sema/
HDSemaOverload.cpp1815 uint64_t ToSize = Context.getTypeSize(PromoteTypes[Idx]); in IsIntegralPromotion() local
1816 if (FromSize < ToSize || in IsIntegralPromotion()
1817 (FromSize == ToSize && in IsIntegralPromotion()
1842 APSInt ToSize(BitWidth.getBitWidth(), BitWidth.isUnsigned()); in IsIntegralPromotion() local
1843 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()
/trueos/contrib/llvm/tools/clang/lib/AST/
HDASTContext.cpp4388 uint64_t ToSize = getTypeSize(PromoteTypes[Idx]); in getPromotedIntegerType() local
4389 if (FromSize < ToSize || in getPromotedIntegerType()
4390 (FromSize == ToSize && in getPromotedIntegerType()