Home | History | Annotate | Download | only in Sema

Lines Matching refs:ToSize

1797       uint64_t ToSize = Context.getTypeSize(PromoteTypes[Idx]);
1798 if (FromSize < ToSize ||
1799 (FromSize == ToSize &&
1824 APSInt ToSize(BitWidth.getBitWidth(), BitWidth.isUnsigned());
1825 ToSize = Context.getTypeSize(ToType);
1828 if (BitWidth < ToSize ||
1829 (FromType->isSignedIntegerType() && BitWidth <= ToSize)) {
1835 if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) {