Lines Matching refs:checksums
9 def checksum_counts(checksums):
11 @param checksums: list of checksums, each checksum in a 4-tuple of ints
12 @returns a dictionary of checksums as keys mapped to their respective
18 for checksum in checksums:
27 def checksum_indices(checksums):
29 @param checksums: list of checksums.
30 @returns an OrderedDict containing checksums as keys and their respective
37 for i, checksum in enumerate(checksums):