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()
84 delta.reverse()
85 return grow, shrink, add, remove, up, down, delta, old, new, otot, ntot
88 grow, shrink, add, remove, up, down, delta, old, new, otot, ntot = \
93 print("%-40s %7s %7s %+7s" % (symboltype, "old", "new", "delta"))
94 for d, n in delta: