Lines Matching refs:end

98                 end=int(match.group("end"), 16))
105 if other.end < self.start:
107 if self.end < other.start:
114 if other.start >= self.start and other.end <= self.end:
239 end = node.get('max')
240 node_window = AddrWindow(int(start, 16), int(end, 16))
259 end = node.get('max')
260 if start is not None and end is not None:
261 window = AddrWindow(int(start, 16), int(end, 16))
263 if window.start >= range.start and window.end <= range.end:
284 end = resource.get('max')
285 dev_list.append(AddrWindow(int(start, 16), int(end, 16)))
304 end = resource.get('max')
305 dev_list.append(AddrWindow(int(start, 16), int(end, 16)))
326 end = resource_hostbridge.get('max')
327 if start is not None and end is not None and int(start, 16) >= PCI_HOLE_THRESHOLD:
328 if int(end,16) < 4 * SIZE_G:
329 low_mem.add(AddrWindow(int(start, 16), int(end, 16)))
331 high_mem.add(AddrWindow(int(start, 16), int(end, 16)))
339 end = resource_hostbridge.get('max')
340 if start is not None and end is not None and \
341 int(start, 16) >= IO_PORT_THRESHOLD and int(end, 16) <= IO_PORT_MAX_ADDRESS:
342 io_port_range_list.add(AddrWindow(int(start, 16), int(end, 16)))
378 …acrn_config_utilities.append_node("/acrn-config/hv/MMIO/MMIO32_END", hex(low_mem[-1].end + 1).uppe…
381 …acrn_config_utilities.append_node("/acrn-config/hv/MMIO/MMIO64_END", hex(high_mem[-1].end + 1).upp…
383 …acrn_config_utilities.append_node("/acrn-config/hv/MMIO/HI_MMIO_END", hex(high_mem[0].end + 1).upp…
399 window = AddrWindow(start = new_w_start, end = new_w_start + size - 1)
402 new_u_end = acrn_config_utilities.round_up(u.end + 1, alignment)
403 window = AddrWindow(start = new_u_end, end = new_u_end + size - 1)
443 …low_mem = [AddrWindow(start = PRE_LAUNCHED_VM_LOW_MEM_START, end = PRE_LAUNCHED_VM_LOW_MEM_END - 1…
444 …high_mem = [AddrWindow(start = PRE_LAUNCHED_VM_HIGH_MEM_START, end = PRE_LAUNCHED_VM_HIGH_MEM_END …
484 io_port_range_list = [AddrWindow(start = IO_PORT_THRESHOLD, end = IO_PORT_MAX_ADDRESS)]