Home
last modified time | relevance | path

Searched refs:linebytes (Results 1 – 3 of 3) sorted by relevance

/rk3399_rockchip-uboot/cmd/
H A Dfpgad.c70 ulong linebytes = (nbytes > DISP_LINE_LEN) ? in do_fpga_md() local
73 for (k = 0; k < linebytes / sizeof(u16); ++k) in do_fpga_md()
80 linebytes / sizeof(u16), in do_fpga_md()
83 nbytes -= linebytes; in do_fpga_md()
84 addr += linebytes; in do_fpga_md()
H A Dpci.c352 ulong i, nbytes, linebytes; in pci_cfg_display() local
366 linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes; in pci_cfg_display()
367 for (i = 0; i < linebytes; i += byte_size) { in pci_cfg_display()
375 nbytes -= linebytes; in pci_cfg_display()
H A Di2c.c518 int j, nbytes, linebytes; in do_i2c_md() local
581 linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes; in do_i2c_md()
584 ret = dm_i2c_read(dev, addr, linebuf, linebytes); in do_i2c_md()
586 ret = i2c_read(chip, addr, alen, linebuf, linebytes); in do_i2c_md()
593 for (j=0; j<linebytes; j++) { in do_i2c_md()
599 for (j=0; j<linebytes; j++) { in do_i2c_md()
608 nbytes -= linebytes; in do_i2c_md()