Searched refs:vecs (Results 1 – 6 of 6) sorted by relevance
| /rk3399_rockchip-uboot/arch/nios2/cpu/ |
| H A D | interrupts.c | 25 static struct irq_action vecs[32]; variable 47 act = vecs; in external_interrupt() 86 act = &vecs[irq]; in irq_install_handler() 109 vecs[i].handler = def_hdlr; in interrupt_init() 110 vecs[i].arg = (void *)i; in interrupt_init() 111 vecs[i].count = 0; in interrupt_init() 124 struct irq_action *act = vecs; in do_irqinfo()
|
| /rk3399_rockchip-uboot/arch/microblaze/cpu/ |
| H A D | interrupts.c | 35 static struct irq_action *vecs; variable 86 act = &vecs[irq]; in install_interrupt_handler() 139 vecs = calloc(1, sizeof(struct irq_action) * irq_no); in interrupt_init() 140 if (vecs == NULL) { in interrupt_init() 147 vecs[i].handler = (interrupt_handler_t *)def_hdlr; in interrupt_init() 148 vecs[i].arg = (void *)i; in interrupt_init() 149 vecs[i].count = 0; in interrupt_init() 165 struct irq_action *act = vecs + irqs; in interrupt_handler() 193 struct irq_action *act = vecs; in do_irqinfo()
|
| /rk3399_rockchip-uboot/drivers/mtd/ |
| H A D | mtdcore.c | 1653 static int default_mtd_writev(struct mtd_info *mtd, const struct kvec *vecs, in default_mtd_writev() argument 1661 if (!vecs[i].iov_len) in default_mtd_writev() 1663 ret = mtd_write(mtd, to, vecs[i].iov_len, &thislen, in default_mtd_writev() 1664 vecs[i].iov_base); in default_mtd_writev() 1666 if (ret || thislen != vecs[i].iov_len) in default_mtd_writev() 1668 to += vecs[i].iov_len; in default_mtd_writev() 1685 int mtd_writev(struct mtd_info *mtd, const struct kvec *vecs, in mtd_writev() argument 1692 return default_mtd_writev(mtd, vecs, count, to, retlen); in mtd_writev() 1693 return mtd->_writev(mtd, vecs, count, to, retlen); in mtd_writev()
|
| H A D | mtdconcat.c | 161 concat_writev(struct mtd_info *mtd, const struct kvec *vecs, in concat_writev() argument 173 total_len += vecs[i].iov_len; in concat_writev() 183 vecs_copy = kmemdup(vecs, sizeof(struct kvec) * count, GFP_KERNEL); in concat_writev()
|
| H A D | mtdpart.c | 434 static int part_writev(struct mtd_info *mtd, const struct kvec *vecs, in part_writev() argument 437 return mtd->parent->_writev(mtd->parent, vecs, count, in part_writev()
|
| /rk3399_rockchip-uboot/include/linux/mtd/ |
| H A D | mtd.h | 271 int (*_writev) (struct mtd_info *mtd, const struct kvec *vecs, 436 int mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
|