Searched refs:d_old (Results 1 - 2 of 2) sorted by relevance

/external/llvm/utils/release/
H A DfindRegressions-simple.py64 def diffResults(d_old, d_new):
73 for t in sorted(d_old.keys()) :
79 if not d_old[t].has_key(x) and not d_new[t].has_key(x):
82 if d_old[t].has_key(x):
85 if d_old[t][x] == 'PASS':
99 if not d_old[t].has_key(x) and not d_new[t].has_key(x):
103 elif not d_old[t].has_key(x):
106 if math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]):
109 elif math.isnan(d_old[t][x]) and not math.isnan(d_new[t][x]):
112 elif not math.isnan(d_old[
155 d_old = parse(sys.argv[1]) variable
[all...]
H A DfindRegressions-nightly.py72 def diffResults(d_old, d_new):
74 for t in sorted(d_old.keys()) :
82 if d_old[t].has_key(x):
84 if d_old[t][x] == 'PASS':
96 if d_old[t].has_key(tp + x):
106 if d_old[t].has_key(exp + x):
124 d_old = parse(sys.argv[1]) variable
128 diffResults(d_old, d_new)

Completed in 380 milliseconds