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

/external/clang/lib/CodeGen/
H A DTargetInfo.cpp5684 // Pad Elems with integers until Size is ToSize.
5685 void pad(uint64_t ToSize) { argument
5686 assert(ToSize >= Size && "Cannot remove elements");
5687 if (ToSize == Size)
5692 if (Aligned > Size && Aligned <= ToSize) {
5698 while (Size + 64 <= ToSize) {
5704 if (Size < ToSize) {
5705 Elems.push_back(llvm::IntegerType::get(Context, ToSize - Size));
5706 Size = ToSize;
/external/clang/lib/AST/
H A DASTContext.cpp4469 uint64_t ToSize = getTypeSize(PromoteTypes[Idx]); local
4470 if (FromSize < ToSize ||
4471 (FromSize == ToSize &&
/external/clang/lib/Sema/
H A DSemaOverload.cpp1824 uint64_t ToSize = Context.getTypeSize(PromoteTypes[Idx]); local
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) {

Completed in 775 milliseconds