Home | History | Annotate | Download | only in Sema

Lines Matching refs:ToSize

1811       uint64_t ToSize = Context.getTypeSize(PromoteTypes[Idx]);
1812 if (FromSize < ToSize ||
1813 (FromSize == ToSize &&
1838 APSInt ToSize(BitWidth.getBitWidth(), BitWidth.isUnsigned());
1839 ToSize = Context.getTypeSize(ToType);
1842 if (BitWidth < ToSize ||
1843 (FromType->isSignedIntegerType() && BitWidth <= ToSize)) {
1849 if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) {