Lines Matching defs:column
1048 * @param column oob offset to read from
1051 static int onenand_transfer_auto_oob(struct mtd_info *mtd, uint8_t *buf, int column,
1059 column, thislen);
1123 int read = 0, column, thislen;
1150 column = from & (writesize - 1);
1151 if (column + thislen > writesize)
1152 thislen = writesize - column;
1167 this->read_bufferram(mtd, ONENAND_DATARAM, buf, column, thislen);
1224 int read = 0, column, thislen;
1260 column = from & (writesize - 1);
1261 if (column + thislen > writesize)
1262 thislen = writesize - column;
1283 this->read_bufferram(mtd, ONENAND_DATARAM, buf, column, thislen);
1309 column = 0;
1349 int read = 0, thislen, column, oobsize;
1368 column = from & (mtd->oobsize - 1);
1370 if (unlikely(column >= oobsize)) {
1383 thislen = oobsize - column;
1401 onenand_transfer_auto_oob(mtd, buf, column, thislen);
1403 this->read_bufferram(mtd, ONENAND_SPARERAM, buf, column, thislen);
1416 column = 0;
1530 int read = 0, thislen, column;
1551 column = from & (mtd->oobsize - 1);
1558 thislen = mtd->oobsize - column;
1572 this->read_bufferram(mtd, ONENAND_SPARERAM, buf, column, thislen);
1583 column = 0;
1634 int thislen, column;
1636 column = addr & (this->writesize - 1);
1639 thislen = min_t(int, this->writesize - column, len);
1653 if (memcmp(buf, this->verify_buf + column, thislen))
1659 column = 0;
1699 int column, subpage;
1718 column = to & (mtd->writesize - 1);
1722 int thislen = min_t(int, mtd->writesize - column, len - written);
1731 memcpy(this->page_buf + column, buf, thislen);
1754 column = 0;
1768 * @param column oob offset to write to
1772 const u_char *buf, int column, int thislen)
1774 return mtd_ooblayout_set_databytes(mtd, buf, oob_buf, column, thislen);
1789 int written = 0, column, thislen = 0, subpage = 0;
1819 column = to & (mtd->writesize - 1);
1826 thislen = min_t(int, mtd->writesize - column, len - written);
1837 memcpy(this->page_buf + column, buf, thislen);
1938 column = 0;
1973 int column, ret = 0, oobsize;
1993 column = to & (mtd->oobsize - 1);
1995 if (unlikely(column >= oobsize)) {
2002 if (unlikely(column + len > oobsize)) {
2024 onenand_fill_auto_oob(mtd, oobbuf, buf, column, thislen);
2026 memcpy(oobbuf + column, buf, thislen);
2063 column = 0;
2773 int column, ret = 0, oobsize;
2787 column = to & (mtd->oobsize - 1);
2825 memcpy(oobbuf + column, buf, thislen);
2878 column = 0;