Lines Matching full:upper

166 // ON A ZERO-TRIP LOOP (lower=1, upper=0,stride=1) - JPH June 23, 2009.
172 "lower=%%%s upper=%%%s stride = %%%s "
229 "lower=%%%s upper=%%%s stride = %%%s\n",
259 "lower=%%%s upper=%%%s stride = %%%s\n",
285 // upper-lower can exceed the limit of signed type
439 "upper=%%%s stride = %%%s signed?<%s>\n",
530 // for(i=10;i<0;++i) // lower >= upper - run-time check
531 // for(i=0;i>10;--i) // lower <= upper - run-time check
555 // upper-lower can exceed the limit of signed type
592 T upper = *pupper;
602 *plastiter = *plower <= upper && *pupperDist > upper - incr;
603 if (*pupperDist > upper)
604 *pupperDist = upper; // tracker C73258
613 *plastiter = *plower >= upper && *pupperDist < upper - incr;
614 if (*pupperDist < upper)
615 *pupperDist = upper; // tracker C73258
629 // upper-lower can exceed the limit of signed type
663 T upper = *pupperDist;
673 !(*plower <= upper && *pupper > upper - incr))
675 if (*pupper > upper)
676 *pupper = upper; // tracker C73258
682 !(*plower >= upper && *pupper < upper - incr))
684 if (*pupper < upper)
685 *pupper = upper; // tracker C73258
768 T upper;
791 upper = *p_ub;
797 if (incr > 0 ? (upper < lower) : (lower < upper)) {
800 // for(i=10;i<0;++i) // lower >= upper - run-time check
801 // for(i=0;i>10;--i) // lower <= upper - run-time check
819 trip_count = upper - lower + 1;
821 trip_count = lower - upper + 1;
823 // upper-lower can exceed the limit of signed type
824 trip_count = (UT)(upper - lower) / incr + 1;
827 trip_count = (UT)(lower - upper) / (-incr) + 1;
839 // Correct upper bound if needed
843 if (*p_ub > upper)
844 *p_ub = upper; // tracker C73258
848 if (*p_ub < upper)
849 *p_ub = upper; // tracker C73258
875 @param pupper Pointer to the upper bound
882 The functions compute the upper and lower bounds and stride to be used for the
968 @param pupper Pointer to the upper bound of loop chunk
969 @param pupperD Pointer to the upper bound of dist_chunk
976 The functions compute the upper and lower bounds and strides to be used for the
1048 @param p_ub pointer to Upper bound
1053 The functions compute the upper and lower bounds and stride to be used for the