| 1250 | } |
| 1251 | |
| 1252 | int64_t View::get_max_offset() |
| 1253 | { |
| 1254 | int width = get_view_width(); |
| 1255 | assert(width > 0); |
| 1256 | |
| 1257 | return ceil((_session->cur_snap_sampletime() / _scale) - |
| 1258 | (width * MaxViewRate)); |
| 1259 | } |
| 1260 | |
| 1261 | int64_t View::get_logic_lst_data_offset(){ |
| 1262 | int width = get_view_width(); |
no test coverage detected