Lines Matching full:delta
18 group.add_argument('-d', help='Show delta of Data Section', action='store_true')
19 group.add_argument('-t', help='Show delta of text Section', action='store_true')
56 delta, common = [], {}
68 delta.append((-old[name], name))
75 delta.append((new[name], name))
81 delta.append((d, name))
83 delta.sort(reverse=True)
84 return grow, shrink, add, remove, up, down, delta, old, new, otot, ntot
87 grow, shrink, add, remove, up, down, delta, old, new, otot, ntot = \
92 print("%-40s %7s %7s %+7s" % (symboltype, "old", "new", "delta"))
93 for d, n in delta: