Home | History | Annotate | Download | only in time

Lines Matching refs:lot

716    timestamps ranging from LOT through HIT.  LOT and HIT disagree
720 before the transition from LOT's settings. */
723 hunt(timezone_t tz, time_t lot, time_t hit, bool only_ok)
730 /* Convert LOT into a broken-down time here, even though our
733 LOT, and tzname needs to be changed back. */
734 bool lotm_ok = my_localtime_rz(tz, &lot, &lotm) != NULL;
739 /* T = average of LOT and HIT, rounding down.
741 int rem_sum = lot % 2 + hit % 2;
742 time_t t = (rem_sum == 2) - (rem_sum < 0) + lot / 2 + hit / 2;
743 if (t == lot)
749 && delta(&tm, &lotm) == t - lot
751 lot = t;