Searched refs:thislen (Results 1 - 2 of 2) sorted by relevance

/u-boot/drivers/mtd/onenand/
H A Donenand_base.c765 * @param thislen oob length to read
768 int column, int thislen)
773 int readend = column + thislen;
860 int read = 0, column, thislen; local
902 thislen = min_t(int, writesize, len - read);
904 if (column + thislen > writesize)
905 thislen = writesize - column;
909 from += thislen;
910 if (!ONENAND_IS_4KB_PAGE(this) && read + thislen < len) {
911 this->main_buf = buf + thislen;
767 onenand_transfer_auto_oob(struct mtd_info *mtd, uint8_t *buf, int column, int thislen) argument
1007 int read = 0, thislen, column, oobsize; local
1218 int read = 0, thislen, column; local
1325 int thislen, column; local
1371 onenand_fill_auto_oob(struct mtd_info *mtd, u_char *oob_buf, const u_char *buf, int column, int thislen) argument
1418 int written = 0, column, thislen, subpage; local
1589 int thislen = min_t(int, oobsize, len - written); local
[all...]
/u-boot/drivers/mtd/
H A Dmtdcore.c1683 size_t totlen = 0, thislen; local
1689 ret = mtd_write(mtd, to, vecs[i].iov_len, &thislen,
1691 totlen += thislen;
1692 if (ret || thislen != vecs[i].iov_len)

Completed in 93 milliseconds