Searched refs:new (Results 1 – 4 of 4) sorted by relevance
| /devicemodel/core/ |
| A D | mem.c | 94 mmio_rb_add(struct mmio_rb_tree *rbt, struct mmio_rb_range *new) in mmio_rb_add() argument 98 overlap = RB_INSERT(mmio_rb_tree, rbt, new); in mmio_rb_add() 103 new->mr_base, new->mr_end, in mmio_rb_add()
|
| /devicemodel/hw/pci/virtio/ |
| A D | virtio_mei.c | 151 int new, val; in refcnt_get() local 158 new = val + 1; in refcnt_get() 160 assert(new > 0); in refcnt_get() 162 } while (!__sync_bool_compare_and_swap((int *)&ref->count, val, new)); in refcnt_get() 164 return new; in refcnt_get() 170 int new, val; in refcnt_put() local 176 new = val - 1; in refcnt_put() 177 } while (!__sync_bool_compare_and_swap((int *)&ref->count, val, new)); in refcnt_put() 179 if (new == 0) in refcnt_put()
|
| /devicemodel/bios/ |
| A D | changelog_ovmf.txt | 123 - Created new Rtc driver and optimized RtcInit and RtcGetTime
|
| /devicemodel/hw/pci/ |
| A D | core.c | 2309 pci_emul_cmdsts_write(struct pci_vdev *dev, int coff, uint32_t new, int bytes) in pci_emul_cmdsts_write() argument 2327 new &= ~readonly; in pci_emul_cmdsts_write() 2328 new |= (old & readonly); in pci_emul_cmdsts_write() 2329 CFGWRITE(dev, coff, new, bytes); /* update config */ in pci_emul_cmdsts_write()
|
Completed in 19 milliseconds