Home | History | Annotate | Download | only in Sema

Lines Matching refs:ToSize

1689       uint64_t ToSize = Context.getTypeSize(PromoteTypes[Idx]);
1690 if (FromSize < ToSize ||
1691 (FromSize == ToSize &&
1716 APSInt ToSize(BitWidth.getBitWidth(), BitWidth.isUnsigned());
1717 ToSize = Context.getTypeSize(ToType);
1720 if (BitWidth < ToSize ||
1721 (FromType->isSignedIntegerType() && BitWidth <= ToSize)) {
1727 if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) {