Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:TySize

772   if (int64_t TySize = TD->getTypeAllocSize(Ty)) {
773 FirstIdx = Offset/TySize;
774 Offset -= FirstIdx*TySize;
776 // Handle hosts where % returns negative instead of values [0..TySize).
779 Offset += TySize;
782 assert((uint64_t)Offset < (uint64_t)TySize && "Out of range offset");