Home | History | Annotate | Download | only in Sema

Lines Matching refs:ToSize

1824       uint64_t ToSize = Context.getTypeSize(PromoteTypes[Idx]);
1825 if (FromSize < ToSize ||
1826 (FromSize == ToSize &&
1851 APSInt ToSize(BitWidth.getBitWidth(), BitWidth.isUnsigned());
1852 ToSize = Context.getTypeSize(ToType);
1855 if (BitWidth < ToSize ||
1856 (FromType->isSignedIntegerType() && BitWidth <= ToSize)) {
1862 if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) {