Lines Matching refs:devdict
179 devdict = {}
192 devdict[(f"{dev_name}", f"{bar_region}")] = int(pt_dev_resource.get('min'), 16)
193 return devdict
195 def insert_vmsix_to_dev_dict(pt_dev_node, devdict): argument
229 devdict[(f"{dev_name}", f"bar{next_bar_region}")] = VMSIX_VBAR_SIZE
345 def create_device_node(allocation_etree, vm_id, devdict): argument
346 for dev in devdict:
349 bar_base = devdict.get(dev)
362 def create_vuart_node(allocation_etree, vm_id, devdict): argument
363 for dev in devdict:
365 bar_base = devdict.get(dev)
409 def alloc_addr(mems, devdict, used_mem, alignment): argument
410 devdict_list = sorted(devdict.items(), key = lambda t : t[1], reverse = True)