Lines Matching refs:Ints
129 unsigned Ints = 0;
132 // variable number of ints depending on the inheritance model used. The
134 // slot thunk if it is virtual. The ints select the object base passed for
138 case MSIM_Unspecified: ++Ints; // VBTableOffset
139 case MSIM_Virtual: ++Ints; // VirtualBaseAdjustmentOffset
141 case MSIM_Multiple: ++Ints; // NonVirtualBaseAdjustment
146 // Data pointers are an aggregate of ints. The first int is an offset
150 case MSIM_Unspecified: ++Ints; // VBTableOffset
151 case MSIM_Virtual: ++Ints; // VirtualBaseAdjustmentOffset
155 case MSIM_Single: ++Ints; // Field offset
158 return std::make_pair(Ptrs, Ints);
166 unsigned Ptrs, Ints;
167 llvm::tie(Ptrs, Ints) = getMSMemberPointerSlots(MPT);
168 // The nominal struct is laid out with pointers followed by ints and aligned
172 uint64_t Width = Ptrs * PtrSize + Ints * IntSize;