Home
last modified time | relevance | path

Searched refs:nbyte (Results 1 – 6 of 6) sorted by relevance

/openbmc/u-boot/drivers/spi/
H A Dsh_qspi.c149 u32 nbyte, chunk; in sh_qspi_xfer_common() local
166 nbyte = bitlen / 8; in sh_qspi_xfer_common()
176 writel(nbyte, spbmul0); in sh_qspi_xfer_common()
184 while (nbyte > 0) { in sh_qspi_xfer_common()
189 chunk = (nbyte >= 32) ? 32 : 1; in sh_qspi_xfer_common()
216 nbyte -= chunk; in sh_qspi_xfer_common()
/openbmc/u-boot/fs/yaffs2/
H A Dyaffsfs.h90 int yaffs_read(int fd, void *buf, unsigned int nbyte) ;
91 int yaffs_write(int fd, const void *buf, unsigned int nbyte) ;
93 int yaffs_pread(int fd, void *buf, unsigned int nbyte, loff_t offset);
94 int yaffs_pwrite(int fd, const void *buf, unsigned int nbyte, loff_t offset);
H A Dyaffsfs.c1065 int yaffsfs_do_read(int handle, void *vbuf, unsigned int nbyte, in yaffsfs_do_read() argument
1096 } else if (nbyte > YAFFS_MAX_FILE_SIZE) { in yaffsfs_do_read()
1112 if (nbyte > maxRead) in yaffsfs_do_read()
1113 nbyte = maxRead; in yaffsfs_do_read()
1117 endPos = pos + nbyte; in yaffsfs_do_read()
1120 nbyte > YAFFS_MAX_FILE_SIZE || in yaffsfs_do_read()
1123 nbyte = 0; in yaffsfs_do_read()
1126 while (nbyte > 0) { in yaffsfs_do_read()
1129 if (nToRead > nbyte) in yaffsfs_do_read()
1130 nToRead = nbyte; in yaffsfs_do_read()
[all …]
/openbmc/qemu/bsd-user/
H A Delfload.c236 abi_ulong nbyte; in padzero() local
260 nbyte = elf_bss & (qemu_host_page_size - 1); in padzero()
261 if (nbyte) { in padzero()
262 nbyte = qemu_host_page_size - nbyte; in padzero()
267 } while (--nbyte); in padzero()
/openbmc/libmctp/
H A Dserial.c113 static int mctp_serial_write(void *fildesp, void *buf, size_t nbyte) in mctp_serial_write() argument
118 return ((wrote = write(fildes, buf, nbyte)) < 0) ? -errno : wrote; in mctp_serial_write()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/krb5/krb5/
H A D0001-Eliminate-old-style-function-declarations.patch364 @@ -157,10 +157,7 @@ read_all(int fildes, void *data, unsigned int nbyte)