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

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DTargetInfo.cpp6565 // Pad Elems with integers until Size is ToSize.
6566 void pad(uint64_t ToSize) {
6567 assert(ToSize >= Size && "Cannot remove elements");
6568 if (ToSize == Size)
6573 if (Aligned > Size && Aligned <= ToSize) {
6579 while (Size + 64 <= ToSize) {
6585 if (Size < ToSize) {
6586 Elems.push_back(llvm::IntegerType::get(Context, ToSize - Size));
6587 Size = ToSize;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOverload.cpp1885 uint64_t ToSize = Context.getTypeSize(PromoteTypes[Idx]); local
1886 if (FromSize < ToSize ||
1887 (FromSize == ToSize &&
1911 llvm::APSInt ToSize(BitWidth.getBitWidth(), BitWidth.isUnsigned());
1912 ToSize = Context.getTypeSize(ToType);
1915 if (BitWidth < ToSize ||
1916 (FromType->isSignedIntegerType() && BitWidth <= ToSize)) {
1922 if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) {
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp4777 uint64_t ToSize = getTypeSize(PromoteTypes[Idx]); local
4778 if (FromSize < ToSize ||
4779 (FromSize == ToSize &&

Completed in 107 milliseconds