Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:TySize

943   if (int64_t TySize = DL.getTypeAllocSize(Ty)) {
944 FirstIdx = Offset/TySize;
945 Offset -= FirstIdx*TySize;
947 // Handle hosts where % returns negative instead of values [0..TySize).
950 Offset += TySize;
953 assert((uint64_t)Offset < (uint64_t)TySize && "Out of range offset");