Lines Matching full:records
22 def plot(records, function, alignment=None, scale=1): argument
23 variants = libplot.unique(records, 'variant', prefer='this')
24 records = [x for x in records if x.function==function]
27 records = [x for x in records if x.src_alignment==alignment[0] and
30 alignments = libplot.unique(records, ('src_alignment', 'dst_alignment'))
38 bytes = libplot.unique(records, 'bytes')[0]
54 matches = [x for x in records if x.variant==variant and x.bytes <= top]
106 records = libplot.parse()
108 functions = libplot.unique(records, 'function')
109 alignments = libplot.unique(records, ('src_alignment', 'dst_alignment'))
114 if plot(records, function, alignment, scale):