Lines Matching refs:checkpt_byte_offs
170 dev->checkpt_byte_offs = 0; in yaffs2_checkpt_open()
175 dev->checkpt_byte_offs = dev->data_bytes_per_chunk; in yaffs2_checkpt_open()
245 dev->checkpt_byte_offs = 0; in yaffs2_checkpt_flush_buffer()
270 dev->checkpt_buffer[dev->checkpt_byte_offs] = *data_bytes; in yaffs2_checkpt_wr()
274 dev->checkpt_byte_offs++; in yaffs2_checkpt_wr()
279 if (dev->checkpt_byte_offs < 0 || in yaffs2_checkpt_wr()
280 dev->checkpt_byte_offs >= dev->data_bytes_per_chunk) in yaffs2_checkpt_wr()
304 if (dev->checkpt_byte_offs < 0 || in yaffs2_checkpt_rd()
305 dev->checkpt_byte_offs >= dev->data_bytes_per_chunk) { in yaffs2_checkpt_rd()
337 dev->checkpt_byte_offs = 0; in yaffs2_checkpt_rd()
346 *data_bytes = dev->checkpt_buffer[dev->checkpt_byte_offs]; in yaffs2_checkpt_rd()
349 dev->checkpt_byte_offs++; in yaffs2_checkpt_rd()
363 if (dev->checkpt_byte_offs != 0) in yaffs_checkpt_close()