Home | History | Annotate | Download | only in firmware_TouchMTB

Lines Matching refs:list_t

1042         @param src_list: could be list_x, list_y, or list_t
1069 def get_segments_by_distance(self, list_t, list_coord, segment_flag, ratio):
1072 derived indexes to partition list_t.
1074 @param list_t: the list of syn_report time instants
1101 segment_t = list_t
1104 segment_t = list_t[first_idx_mid_seg:last_idx_mid_seg]
1107 segment_t = list_t[:first_idx_mid_seg]
1110 segment_t = list_t[last_idx_mid_seg:]
1117 def get_segments(self, list_t, list_coord, segment_flag, ratio):
1118 """Partition list_t and list_coord into the segments specified by
1122 line. We will partition list_t and list_coord by distance.
1126 partition list_t and list_coord by time in this case.
1133 @param list_t: the list of syn_report time instants
1142 return self.get_segments_by_distance(list_t, list_coord,
1145 return (self._get_segments_by_length(list_t, segment_flag, ratio),