Lines Matching refs:left
582 int left = 0, right = tzdb->index_size - 1; in seek_to_tz_position() local
589 int mid = ((unsigned)left + right) >> 1; in seek_to_tz_position()
595 left = mid + 1; in seek_to_tz_position()
601 } while (left <= right); in seek_to_tz_position()
792 uint32_t left, right; in timelib_fetch_timezone_offset() local
838 left = 0; in timelib_fetch_timezone_offset()
841 while (right - left > 1) { in timelib_fetch_timezone_offset()
842 uint32_t mid = (left + right) >> 1; in timelib_fetch_timezone_offset()
847 left = mid; in timelib_fetch_timezone_offset()
850 *transition_time = tz->trans[left]; in timelib_fetch_timezone_offset()
851 return &(tz->type[tz->trans_idx[left]]); in timelib_fetch_timezone_offset()