Lines Matching full:second
144 if (start_idx.first && start_idx.second == UINT64_MAX) {
146 start_idx.second = history.GetSize() - count.second;
147 stop_idx.second = history.GetSize() - 1;
149 start_idx.second = stop_idx.second;
150 stop_idx.second = history.GetSize() - 1;
152 start_idx.second = 0;
153 stop_idx.second = history.GetSize() - 1;
157 start_idx.second = 0;
158 stop_idx.second = history.GetSize() - 1;
161 stop_idx.second = start_idx.second + count.second - 1;
163 stop_idx.second = history.GetSize() - 1;
167 if (stop_idx.second >= count.second)
168 start_idx.second = stop_idx.second - count.second + 1;
170 start_idx.second = 0;
174 start_idx.second = 0;
175 stop_idx.second = count.second - 1;
178 history.Dump(result.GetOutputStream(), start_idx.second,
179 stop_idx.second);