Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:TySize

881   if (int64_t TySize = DL->getTypeAllocSize(Ty)) {
882 FirstIdx = Offset/TySize;
883 Offset -= FirstIdx*TySize;
885 // Handle hosts where % returns negative instead of values [0..TySize).
888 Offset += TySize;
891 assert((uint64_t)Offset < (uint64_t)TySize && "Out of range offset");