Home | History | Annotate | Download | only in tools

Lines Matching refs:end_address

2415   def output_words(self, f, start_address, end_address,
2428 end_address = self.align_up(end_address, size)
2429 if end_address > high:
2430 end_address = high
2433 if start_address != low or end_address != high:
2441 (desc, start_address, end_address, highlight_address, expand))
2445 for j in xrange(0, end_address - start_address, size):
2493 def output_ascii(self, f, start_address, end_address, highlight_address):
2501 if end_address > region[0] + region[1]:
2502 end_address = region[0] + region[1]
2505 if start_address != region[0] or end_address != region[0] + region[1]:
2511 (start_address, end_address, highlight_address, expand))
2519 for i in xrange(end_address - start):
2558 self, f, start_address, end_address, highlight_address, exact):
2562 if end_address > region[0] + region[1]:
2563 end_address = region[0] + region[1]
2564 count = end_address - start_address
2574 count = end_address - start_address
2577 if start_address != region[0] or end_address != region[0] + region[1]:
2579 if exact and not found and end_address == region[0] + region[1]:
2586 (start_address, end_address, highlight_address, expand))