Lines Matching refs:end_address
2971 def output_words(self, f, start_address, end_address, highlight_address, desc,
2983 end_address = self.align_up(end_address, size)
2984 if end_address > high:
2985 end_address = high
2988 if start_address != low or end_address != high:
2996 (desc, start_address, end_address, highlight_address, expand))
3000 for j in range(0, end_address - start_address, size):
3059 def output_ascii(self, f, start_address, end_address, highlight_address):
3067 if end_address > region[0] + region[1]:
3068 end_address = region[0] + region[1]
3071 if start_address != region[0] or end_address != region[0] + region[1]:
3077 (start_address, end_address, highlight_address, expand))
3085 for i in range(end_address - start):
3124 self, f, start_address, end_address, highlight_address, exact):
3128 if end_address > region[0] + region[1]:
3129 end_address = region[0] + region[1]
3130 count = end_address - start_address
3140 count = end_address - start_address
3143 if start_address != region[0] or end_address != region[0] + region[1]:
3145 if exact and not found and end_address == region[0] + region[1]:
3152 (start_address, end_address, highlight_address, expand))