Lines Matching refs:base
113 def merge(base, new): argument
115 for alg in base.keys():
117 for op in base[alg].keys():
120 for index in range(len(base[alg][op])):
122 "bit_key": base[alg][op][index]["bit_key"],
123 "byte_blocks": base[alg][op][index]["byte_blocks"],
125 if "operations" in base[alg][op][index].keys():
126 merged_item["base_ops"] = base[alg][op][index]["operations"]
129 merged_item["base_cycles"] = base[alg][op][index]["cycles"]
180 base = parse(base_log)
182 merged = merge(base, new)